Files
2026-07-19 01:01:28 +02:00

28 lines
1.0 KiB
Makefile

# manylinux2014-x64 is FROM quay.io/pypa/manylinux2014_x86_64 directly (hardcoded in
# Dockerfile.in, not parameterized via ORG/BASE_IMAGE). BASE_IMAGE_* below is only
# informational to satisfy the mandatory-var guard.
BASE_IMAGE_REGISTRY ?= quay.io
BASE_IMAGE_PATH ?= pypa
BASE_IMAGE_NAME = manylinux2014_x86_64
BASE_IMAGE_TAG = 2024-07-20-e0def9a
OUTPUT_IMAGE_REGISTRY ?= docker.io
OUTPUT_IMAGE_PATH ?= dockcross
OUTPUT_IMAGE_NAME = manylinux2014-x64
# Dockerfile.in COPYs linux-x64/... and manylinux2014-x64/Toolchain.cmake, so the
# build context has to be the repository root, not this preset's own directory.
BUILD_CONTEXT_DIR = $(PRESET_DIR)
TEST_IMAGE_CMD = /opt/python/cp311-cp311/bin/python test/run.py
TEST_IMAGE_ARGS =
# Extra tests (see CONTRIBUTING.md / Makefile "Extra tests" section)
EXTRA_TESTS = stockfish ninja openssl SQLite fmt cpython
STOCKFISH_ARGS = ARCH=x86-64-modern
OPENSSL_ARGS = linux-x86_64
# FROM an external upstream image, not our own base - opt out of the
# Makefile's "DEPENDS_ON = base.build" default.
DEPENDS_ON =