2016-09-26 00:38:26 +02:00
|
|
|
|
|
|
|
#
|
|
|
|
# Parameters
|
|
|
|
#
|
|
|
|
|
|
|
|
# Name of the docker executable
|
2014-10-17 13:42:56 +02:00
|
|
|
DOCKER = docker
|
2016-09-26 00:38:26 +02:00
|
|
|
|
|
|
|
# Docker organization to pull the images from
|
2016-07-16 05:46:08 +02:00
|
|
|
ORG = dockcross
|
2016-09-26 00:38:26 +02:00
|
|
|
|
2019-05-22 09:05:11 +02:00
|
|
|
# Directory where to generate the dockcross script for each images (e.g bin/dockcross-manylinux1-x64)
|
2016-11-17 04:02:55 +01:00
|
|
|
BIN = ./bin
|
2016-09-25 23:44:08 +02:00
|
|
|
|
2016-09-26 00:38:26 +02:00
|
|
|
# These images are built using the "build implicit rule"
|
2021-01-12 10:40:35 +01:00
|
|
|
STANDARD_IMAGES = linux-s390x android-arm android-arm64 android-x86 android-x86_64 linux-x86 linux-x64 linux-arm64 linux-arm64-musl linux-armv5 linux-armv5-musl linux-armv6 linux-armv6-musl linux-armv7 linux-armv7a linux-armv7l-musl linux-mips linux-mipsel linux-ppc64le windows-static-x86 windows-static-x64 windows-static-x64-posix windows-shared-x86 windows-shared-x64 windows-shared-x64-posix
|
2017-04-26 21:21:27 +02:00
|
|
|
|
|
|
|
# Generated Dockerfiles.
|
2020-11-16 15:38:55 +01:00
|
|
|
GEN_IMAGES = linux-s390x linux-mips manylinux1-x64 manylinux1-x86 manylinux2010-x64 manylinux2010-x86 manylinux2014-x64 manylinux2014-x86 manylinux2014-aarch64 web-wasm linux-arm64 linux-arm64-musl windows-static-x86 windows-static-x64 windows-static-x64-posix windows-shared-x86 windows-shared-x64 windows-shared-x64-posix linux-armv7 linux-armv7a linux-armv7l-musl linux-armv6-musl linux-armv5 linux-armv5-musl linux-ppc64le
|
2017-04-26 21:21:27 +02:00
|
|
|
GEN_IMAGE_DOCKERFILES = $(addsuffix /Dockerfile,$(GEN_IMAGES))
|
2016-09-25 23:44:08 +02:00
|
|
|
|
2016-09-26 01:04:07 +02:00
|
|
|
# These images are expected to have explicit rules for *both* build and testing
|
2020-07-05 01:44:27 +02:00
|
|
|
NON_STANDARD_IMAGES = web-wasm manylinux1-x64 manylinux1-x86 manylinux2010-x64 manylinux2010-x86 manylinux2014-x64 manylinux2014-x86 manylinux2014-aarch64
|
2016-09-26 01:04:07 +02:00
|
|
|
|
2020-06-26 02:10:05 +02:00
|
|
|
DOCKER_COMPOSITE_SOURCES = common.docker common.debian common.manylinux common.crosstool common.windows common-manylinux.crosstool common.dockcross
|
2017-04-26 21:21:27 +02:00
|
|
|
|
2016-09-26 01:04:07 +02:00
|
|
|
# This list all available images
|
2016-09-26 05:28:23 +02:00
|
|
|
IMAGES = $(STANDARD_IMAGES) $(NON_STANDARD_IMAGES)
|
2014-10-17 13:42:56 +02:00
|
|
|
|
2016-09-26 00:38:26 +02:00
|
|
|
# Optional arguments for test runner (test/run.py) associated with "testing implicit rule"
|
2016-09-26 01:04:07 +02:00
|
|
|
linux-ppc64le.test_ARGS = --languages C
|
2019-02-28 10:41:52 +01:00
|
|
|
windows-static-x86.test_ARGS = --exe-suffix ".exe"
|
|
|
|
windows-static-x64.test_ARGS = --exe-suffix ".exe"
|
|
|
|
windows-static-x64-posix.test_ARGS = --exe-suffix ".exe"
|
|
|
|
windows-shared-x86.test_ARGS = --exe-suffix ".exe"
|
|
|
|
windows-shared-x64.test_ARGS = --exe-suffix ".exe"
|
|
|
|
windows-shared-x64-posix.test_ARGS = --exe-suffix ".exe"
|
2016-09-26 00:03:28 +02:00
|
|
|
|
2016-11-29 02:01:39 +01:00
|
|
|
# On CircleCI, do not attempt to delete container
|
|
|
|
# See https://circleci.com/docs/docker-btrfs-error/
|
2016-11-29 05:39:38 +01:00
|
|
|
RM = --rm
|
2016-11-29 02:01:39 +01:00
|
|
|
ifeq ("$(CIRCLECI)", "true")
|
2016-11-29 05:39:38 +01:00
|
|
|
RM =
|
2016-11-29 02:01:39 +01:00
|
|
|
endif
|
|
|
|
|
2018-12-17 04:42:19 +01:00
|
|
|
# Tag images with date and Git short hash in addition to revision
|
2020-10-21 01:18:43 +02:00
|
|
|
TAG := $(shell date '+%Y%m%d')-$(shell git rev-parse --short HEAD)
|
2018-12-17 04:42:19 +01:00
|
|
|
|
2016-09-26 00:38:26 +02:00
|
|
|
#
|
2016-09-26 05:28:23 +02:00
|
|
|
# images: This target builds all IMAGES (because it is the first one, it is built by default)
|
2016-09-26 00:38:26 +02:00
|
|
|
#
|
2016-09-26 05:28:23 +02:00
|
|
|
images: base $(IMAGES)
|
2016-07-16 07:27:13 +02:00
|
|
|
|
2016-09-26 00:38:26 +02:00
|
|
|
#
|
|
|
|
# test: This target ensures all IMAGES are built and run the associated tests
|
|
|
|
#
|
2016-09-26 05:28:23 +02:00
|
|
|
test: base.test $(addsuffix .test,$(IMAGES))
|
2016-07-16 07:17:36 +02:00
|
|
|
|
2017-04-26 21:21:27 +02:00
|
|
|
#
|
|
|
|
# Generic Targets (can specialize later).
|
|
|
|
#
|
|
|
|
|
|
|
|
$(GEN_IMAGE_DOCKERFILES) Dockerfile: %Dockerfile: %Dockerfile.in $(DOCKER_COMPOSITE_SOURCES)
|
|
|
|
sed \
|
|
|
|
-e '/common.docker/ r common.docker' \
|
|
|
|
-e '/common.debian/ r common.debian' \
|
|
|
|
-e '/common.manylinux/ r common.manylinux' \
|
|
|
|
-e '/common.crosstool/ r common.crosstool' \
|
2020-05-21 13:39:55 +02:00
|
|
|
-e '/common-manylinux.crosstool/ r common-manylinux.crosstool' \
|
2018-06-09 07:20:20 +02:00
|
|
|
-e '/common.windows/ r common.windows' \
|
2020-06-26 02:10:05 +02:00
|
|
|
-e '/common.dockcross/ r common.dockcross' \
|
2017-04-26 21:21:27 +02:00
|
|
|
$< > $@
|
|
|
|
|
2016-09-26 00:38:26 +02:00
|
|
|
#
|
2019-01-19 22:02:33 +01:00
|
|
|
# web-wasm
|
2016-09-26 00:38:26 +02:00
|
|
|
#
|
2019-01-19 22:02:33 +01:00
|
|
|
web-wasm: web-wasm/Dockerfile
|
2016-11-25 21:51:38 +01:00
|
|
|
mkdir -p $@/imagefiles && cp -r imagefiles $@/
|
2019-01-19 22:02:33 +01:00
|
|
|
cp -r test web-wasm/
|
|
|
|
$(DOCKER) build -t $(ORG)/web-wasm:latest \
|
|
|
|
--build-arg IMAGE=$(ORG)/web-wasm \
|
2016-10-31 04:57:04 +01:00
|
|
|
--build-arg VCS_REF=`git rev-parse --short HEAD` \
|
|
|
|
--build-arg VCS_URL=`git config --get remote.origin.url` \
|
|
|
|
--build-arg BUILD_DATE=`date -u +"%Y-%m-%dT%H:%M:%SZ"` \
|
2019-01-19 22:02:33 +01:00
|
|
|
web-wasm
|
|
|
|
$(DOCKER) build -t $(ORG)/web-wasm:$(TAG) \
|
|
|
|
--build-arg IMAGE=$(ORG)/web-wasm \
|
2019-01-02 03:15:02 +01:00
|
|
|
--build-arg VERSION=$(TAG) \
|
|
|
|
--build-arg VCS_REF=`git rev-parse --short HEAD` \
|
|
|
|
--build-arg VCS_URL=`git config --get remote.origin.url` \
|
|
|
|
--build-arg BUILD_DATE=`date -u +"%Y-%m-%dT%H:%M:%SZ"` \
|
2019-01-19 22:02:33 +01:00
|
|
|
web-wasm
|
|
|
|
rm -rf web-wasm/test
|
2016-11-25 21:51:38 +01:00
|
|
|
rm -rf $@/imagefiles
|
2015-05-19 23:34:05 +02:00
|
|
|
|
2019-01-19 22:02:33 +01:00
|
|
|
web-wasm.test: web-wasm
|
|
|
|
cp -r test web-wasm/
|
|
|
|
$(DOCKER) run $(RM) dockcross/web-wasm > $(BIN)/dockcross-web-wasm && chmod +x $(BIN)/dockcross-web-wasm
|
|
|
|
$(BIN)/dockcross-web-wasm python test/run.py --exe-suffix ".js"
|
|
|
|
rm -rf web-wasm/test
|
2016-07-16 08:45:23 +02:00
|
|
|
|
2020-05-21 13:39:55 +02:00
|
|
|
#
|
|
|
|
# manylinux2014-aarch64
|
|
|
|
#
|
|
|
|
manylinux2014-aarch64: manylinux2014-aarch64/Dockerfile
|
|
|
|
mkdir -p $@/imagefiles && cp -r imagefiles $@/
|
|
|
|
$(DOCKER) build -t $(ORG)/manylinux2014-aarch64:latest \
|
|
|
|
--build-arg IMAGE=$(ORG)/manylinux2014-aarch64 \
|
|
|
|
--build-arg VCS_REF=`git rev-parse --short HEAD` \
|
|
|
|
--build-arg VCS_URL=`git config --get remote.origin.url` \
|
|
|
|
--build-arg BUILD_DATE=`date -u +"%Y-%m-%dT%H:%M:%SZ"` \
|
|
|
|
-f manylinux2014-aarch64/Dockerfile .
|
|
|
|
$(DOCKER) build -t $(ORG)/manylinux2014-aarch64:$(TAG) \
|
|
|
|
--build-arg IMAGE=$(ORG)/manylinux2014-aarch64 \
|
|
|
|
--build-arg VERSION=$(TAG) \
|
|
|
|
--build-arg VCS_REF=`git rev-parse --short HEAD` \
|
|
|
|
--build-arg VCS_URL=`git config --get remote.origin.url` \
|
|
|
|
--build-arg BUILD_DATE=`date -u +"%Y-%m-%dT%H:%M:%SZ"` \
|
|
|
|
-f manylinux2014-aarch64/Dockerfile .
|
|
|
|
rm -rf $@/imagefiles
|
|
|
|
|
|
|
|
manylinux2014-aarch64.test: manylinux2014-aarch64
|
|
|
|
$(DOCKER) run $(RM) dockcross/manylinux2014-aarch64 > $(BIN)/dockcross-manylinux2014-aarch64 && chmod +x $(BIN)/dockcross-manylinux2014-aarch64
|
|
|
|
$(BIN)/dockcross-manylinux2014-aarch64 /opt/python/cp35-cp35m/bin/python test/run.py
|
|
|
|
|
2019-12-17 15:00:47 +01:00
|
|
|
#
|
|
|
|
# manylinux2014-x64
|
|
|
|
#
|
|
|
|
manylinux2014-x64: manylinux2014-x64/Dockerfile
|
|
|
|
mkdir -p $@/imagefiles && cp -r imagefiles $@/
|
|
|
|
$(DOCKER) build -t $(ORG)/manylinux2014-x64:latest \
|
|
|
|
--build-arg IMAGE=$(ORG)/manylinux2014-x64 \
|
|
|
|
--build-arg VCS_REF=`git rev-parse --short HEAD` \
|
|
|
|
--build-arg VCS_URL=`git config --get remote.origin.url` \
|
|
|
|
--build-arg BUILD_DATE=`date -u +"%Y-%m-%dT%H:%M:%SZ"` \
|
|
|
|
-f manylinux2014-x64/Dockerfile .
|
|
|
|
$(DOCKER) build -t $(ORG)/manylinux2014-x64:$(TAG) \
|
|
|
|
--build-arg IMAGE=$(ORG)/manylinux2014-x64 \
|
|
|
|
--build-arg VERSION=$(TAG) \
|
|
|
|
--build-arg VCS_REF=`git rev-parse --short HEAD` \
|
|
|
|
--build-arg VCS_URL=`git config --get remote.origin.url` \
|
|
|
|
--build-arg BUILD_DATE=`date -u +"%Y-%m-%dT%H:%M:%SZ"` \
|
|
|
|
-f manylinux2014-x64/Dockerfile .
|
|
|
|
rm -rf $@/imagefiles
|
|
|
|
|
|
|
|
manylinux2014-x64.test: manylinux2014-x64
|
|
|
|
$(DOCKER) run $(RM) dockcross/manylinux2014-x64 > $(BIN)/dockcross-manylinux2014-x64 && chmod +x $(BIN)/dockcross-manylinux2014-x64
|
|
|
|
$(BIN)/dockcross-manylinux2014-x64 /opt/python/cp35-cp35m/bin/python test/run.py
|
|
|
|
|
2020-07-05 01:44:27 +02:00
|
|
|
#
|
|
|
|
# manylinux2014-x86
|
|
|
|
#
|
|
|
|
manylinux2014-x86: manylinux2014-x86/Dockerfile
|
|
|
|
mkdir -p $@/imagefiles && cp -r imagefiles $@/
|
|
|
|
$(DOCKER) build -t $(ORG)/manylinux2014-x86:latest \
|
|
|
|
--build-arg IMAGE=$(ORG)/manylinux2014-x86 \
|
|
|
|
--build-arg VCS_REF=`git rev-parse --short HEAD` \
|
|
|
|
--build-arg VCS_URL=`git config --get remote.origin.url` \
|
|
|
|
--build-arg BUILD_DATE=`date -u +"%Y-%m-%dT%H:%M:%SZ"` \
|
|
|
|
-f manylinux2014-x86/Dockerfile .
|
|
|
|
$(DOCKER) build -t $(ORG)/manylinux2014-x86:$(TAG) \
|
|
|
|
--build-arg IMAGE=$(ORG)/manylinux2014-x86 \
|
|
|
|
--build-arg VERSION=$(TAG) \
|
|
|
|
--build-arg VCS_REF=`git rev-parse --short HEAD` \
|
|
|
|
--build-arg VCS_URL=`git config --get remote.origin.url` \
|
|
|
|
--build-arg BUILD_DATE=`date -u +"%Y-%m-%dT%H:%M:%SZ"` \
|
|
|
|
-f manylinux2014-x86/Dockerfile .
|
|
|
|
rm -rf $@/imagefiles
|
|
|
|
|
|
|
|
manylinux2014-x86.test: manylinux2014-x86
|
|
|
|
$(DOCKER) run $(RM) dockcross/manylinux2014-x86 > $(BIN)/dockcross-manylinux2014-x86 && chmod +x $(BIN)/dockcross-manylinux2014-x86
|
|
|
|
$(BIN)/dockcross-manylinux2014-x86 /opt/python/cp35-cp35m/bin/python test/run.py
|
|
|
|
|
2019-05-22 09:21:10 +02:00
|
|
|
#
|
|
|
|
# manylinux2010-x64
|
|
|
|
#
|
|
|
|
|
|
|
|
manylinux2010-x64: manylinux2010-x64/Dockerfile
|
|
|
|
mkdir -p $@/imagefiles && cp -r imagefiles $@/
|
|
|
|
$(DOCKER) build -t $(ORG)/manylinux2010-x64:latest \
|
|
|
|
--build-arg IMAGE=$(ORG)/manylinux2010-x64 \
|
|
|
|
--build-arg VCS_REF=`git rev-parse --short HEAD` \
|
|
|
|
--build-arg VCS_URL=`git config --get remote.origin.url` \
|
|
|
|
--build-arg BUILD_DATE=`date -u +"%Y-%m-%dT%H:%M:%SZ"` \
|
|
|
|
-f manylinux2010-x64/Dockerfile .
|
|
|
|
$(DOCKER) build -t $(ORG)/manylinux2010-x64:$(TAG) \
|
|
|
|
--build-arg IMAGE=$(ORG)/manylinux2010-x64 \
|
|
|
|
--build-arg VERSION=$(TAG) \
|
|
|
|
--build-arg VCS_REF=`git rev-parse --short HEAD` \
|
|
|
|
--build-arg VCS_URL=`git config --get remote.origin.url` \
|
|
|
|
--build-arg BUILD_DATE=`date -u +"%Y-%m-%dT%H:%M:%SZ"` \
|
|
|
|
-f manylinux2010-x64/Dockerfile .
|
|
|
|
rm -rf $@/imagefiles
|
|
|
|
|
|
|
|
manylinux2010-x64.test: manylinux2010-x64
|
|
|
|
$(DOCKER) run $(RM) dockcross/manylinux2010-x64 > $(BIN)/dockcross-manylinux2010-x64 && chmod +x $(BIN)/dockcross-manylinux2010-x64
|
|
|
|
$(BIN)/dockcross-manylinux2010-x64 /opt/python/cp35-cp35m/bin/python test/run.py
|
|
|
|
|
2019-12-17 19:13:08 +01:00
|
|
|
#
|
|
|
|
# manylinux2010-x86
|
|
|
|
#
|
|
|
|
|
|
|
|
manylinux2010-x86: manylinux2010-x86/Dockerfile
|
|
|
|
mkdir -p $@/imagefiles && cp -r imagefiles $@/
|
|
|
|
$(DOCKER) build -t $(ORG)/manylinux2010-x86:latest \
|
|
|
|
--build-arg IMAGE=$(ORG)/manylinux2010-x86 \
|
|
|
|
--build-arg VCS_REF=`git rev-parse --short HEAD` \
|
|
|
|
--build-arg VCS_URL=`git config --get remote.origin.url` \
|
|
|
|
--build-arg BUILD_DATE=`date -u +"%Y-%m-%dT%H:%M:%SZ"` \
|
|
|
|
-f manylinux2010-x86/Dockerfile .
|
|
|
|
$(DOCKER) build -t $(ORG)/manylinux2010-x86:$(TAG) \
|
|
|
|
--build-arg IMAGE=$(ORG)/manylinux2010-x86 \
|
|
|
|
--build-arg VERSION=$(TAG) \
|
|
|
|
--build-arg VCS_REF=`git rev-parse --short HEAD` \
|
|
|
|
--build-arg VCS_URL=`git config --get remote.origin.url` \
|
|
|
|
--build-arg BUILD_DATE=`date -u +"%Y-%m-%dT%H:%M:%SZ"` \
|
|
|
|
-f manylinux2010-x86/Dockerfile .
|
|
|
|
rm -rf $@/imagefiles
|
|
|
|
|
|
|
|
manylinux2010-x86.test: manylinux2010-x86
|
|
|
|
$(DOCKER) run $(RM) dockcross/manylinux2010-x86 > $(BIN)/dockcross-manylinux2010-x86 && chmod +x $(BIN)/dockcross-manylinux2010-x86
|
|
|
|
$(BIN)/dockcross-manylinux2010-x86 /opt/python/cp35-cp35m/bin/python test/run.py
|
|
|
|
|
2016-09-26 00:38:26 +02:00
|
|
|
#
|
2019-05-22 09:05:11 +02:00
|
|
|
# manylinux1-x64
|
|
|
|
#
|
2016-09-20 17:35:18 +02:00
|
|
|
|
2019-05-22 09:05:11 +02:00
|
|
|
manylinux1-x64: manylinux1-x64/Dockerfile
|
2016-11-25 21:51:38 +01:00
|
|
|
mkdir -p $@/imagefiles && cp -r imagefiles $@/
|
2019-05-22 09:05:11 +02:00
|
|
|
$(DOCKER) build -t $(ORG)/manylinux1-x64:latest \
|
|
|
|
--build-arg IMAGE=$(ORG)/manylinux1-x64 \
|
2016-10-31 04:57:04 +01:00
|
|
|
--build-arg VCS_REF=`git rev-parse --short HEAD` \
|
|
|
|
--build-arg VCS_URL=`git config --get remote.origin.url` \
|
|
|
|
--build-arg BUILD_DATE=`date -u +"%Y-%m-%dT%H:%M:%SZ"` \
|
2019-05-22 09:05:11 +02:00
|
|
|
-f manylinux1-x64/Dockerfile .
|
|
|
|
$(DOCKER) build -t $(ORG)/manylinux1-x64:$(TAG) \
|
|
|
|
--build-arg IMAGE=$(ORG)/manylinux1-x64 \
|
2019-01-13 21:50:24 +01:00
|
|
|
--build-arg VERSION=$(TAG) \
|
|
|
|
--build-arg VCS_REF=`git rev-parse --short HEAD` \
|
|
|
|
--build-arg VCS_URL=`git config --get remote.origin.url` \
|
|
|
|
--build-arg BUILD_DATE=`date -u +"%Y-%m-%dT%H:%M:%SZ"` \
|
2019-05-22 09:05:11 +02:00
|
|
|
-f manylinux1-x64/Dockerfile .
|
2016-11-25 21:51:38 +01:00
|
|
|
rm -rf $@/imagefiles
|
2016-09-20 06:35:37 +02:00
|
|
|
|
2019-05-22 09:05:11 +02:00
|
|
|
manylinux1-x64.test: manylinux1-x64
|
|
|
|
$(DOCKER) run $(RM) dockcross/manylinux1-x64 > $(BIN)/dockcross-manylinux1-x64 && chmod +x $(BIN)/dockcross-manylinux1-x64
|
|
|
|
$(BIN)/dockcross-manylinux1-x64 /opt/python/cp35-cp35m/bin/python test/run.py
|
2016-09-20 06:35:37 +02:00
|
|
|
|
2016-09-26 00:38:26 +02:00
|
|
|
#
|
2019-05-22 09:05:11 +02:00
|
|
|
# manylinux1-x86
|
2016-09-26 00:38:26 +02:00
|
|
|
#
|
2016-09-25 05:14:33 +02:00
|
|
|
|
2019-05-22 09:05:11 +02:00
|
|
|
manylinux1-x86: manylinux1-x86/Dockerfile
|
2016-11-25 21:51:38 +01:00
|
|
|
mkdir -p $@/imagefiles && cp -r imagefiles $@/
|
2019-05-22 09:05:11 +02:00
|
|
|
$(DOCKER) build -t $(ORG)/manylinux1-x86:latest \
|
|
|
|
--build-arg IMAGE=$(ORG)/manylinux1-x86 \
|
2016-10-31 04:57:04 +01:00
|
|
|
--build-arg VCS_REF=`git rev-parse --short HEAD` \
|
|
|
|
--build-arg VCS_URL=`git config --get remote.origin.url` \
|
|
|
|
--build-arg BUILD_DATE=`date -u +"%Y-%m-%dT%H:%M:%SZ"` \
|
2019-05-22 09:05:11 +02:00
|
|
|
-f manylinux1-x86/Dockerfile .
|
|
|
|
$(DOCKER) build -t $(ORG)/manylinux1-x86:$(TAG) \
|
|
|
|
--build-arg IMAGE=$(ORG)/manylinux1-x86 \
|
2019-01-13 21:50:24 +01:00
|
|
|
--build-arg VERSION=$(TAG) \
|
|
|
|
--build-arg VCS_REF=`git rev-parse --short HEAD` \
|
|
|
|
--build-arg VCS_URL=`git config --get remote.origin.url` \
|
|
|
|
--build-arg BUILD_DATE=`date -u +"%Y-%m-%dT%H:%M:%SZ"` \
|
2019-05-22 09:05:11 +02:00
|
|
|
-f manylinux1-x86/Dockerfile .
|
2016-11-25 21:51:38 +01:00
|
|
|
rm -rf $@/imagefiles
|
2016-09-25 05:14:33 +02:00
|
|
|
|
2019-05-22 09:05:11 +02:00
|
|
|
manylinux1-x86.test: manylinux1-x86
|
|
|
|
$(DOCKER) run $(RM) dockcross/manylinux1-x86 > $(BIN)/dockcross-manylinux1-x86 && chmod +x $(BIN)/dockcross-manylinux1-x86
|
|
|
|
$(BIN)/dockcross-manylinux1-x86 /opt/python/cp35-cp35m/bin/python test/run.py
|
2016-09-25 05:14:33 +02:00
|
|
|
|
2016-09-26 00:38:26 +02:00
|
|
|
#
|
|
|
|
# base
|
|
|
|
#
|
2016-09-20 06:35:37 +02:00
|
|
|
|
2016-11-17 04:02:55 +01:00
|
|
|
base: Dockerfile imagefiles/
|
2017-08-27 05:48:47 +02:00
|
|
|
$(DOCKER) build -t $(ORG)/base:latest \
|
2016-10-31 04:57:04 +01:00
|
|
|
--build-arg IMAGE=$(ORG)/base \
|
|
|
|
--build-arg VCS_URL=`git config --get remote.origin.url` \
|
|
|
|
.
|
2015-02-01 04:18:38 +01:00
|
|
|
|
2016-09-25 21:44:22 +02:00
|
|
|
base.test: base
|
2016-11-29 02:01:39 +01:00
|
|
|
$(DOCKER) run $(RM) dockcross/base > $(BIN)/dockcross-base && chmod +x $(BIN)/dockcross-base
|
2016-07-16 08:45:23 +02:00
|
|
|
|
2016-09-26 01:46:49 +02:00
|
|
|
#
|
|
|
|
# display
|
|
|
|
#
|
2016-09-26 05:28:23 +02:00
|
|
|
display_images:
|
|
|
|
for image in $(IMAGES); do echo $$image; done
|
2016-09-26 01:46:49 +02:00
|
|
|
|
2016-09-26 05:28:23 +02:00
|
|
|
$(VERBOSE).SILENT: display_images
|
2016-09-26 01:46:49 +02:00
|
|
|
|
2016-09-26 00:38:26 +02:00
|
|
|
#
|
|
|
|
# build implicit rule
|
|
|
|
#
|
2017-04-26 21:21:27 +02:00
|
|
|
|
|
|
|
$(STANDARD_IMAGES): %: %/Dockerfile base
|
2016-11-25 21:51:38 +01:00
|
|
|
mkdir -p $@/imagefiles && cp -r imagefiles $@/
|
2017-08-27 05:48:47 +02:00
|
|
|
$(DOCKER) build -t $(ORG)/$@:latest \
|
2016-10-31 04:57:04 +01:00
|
|
|
--build-arg IMAGE=$(ORG)/$@ \
|
|
|
|
--build-arg VCS_REF=`git rev-parse --short HEAD` \
|
|
|
|
--build-arg VCS_URL=`git config --get remote.origin.url` \
|
|
|
|
--build-arg BUILD_DATE=`date -u +"%Y-%m-%dT%H:%M:%SZ"` \
|
|
|
|
$@
|
2019-01-13 21:50:24 +01:00
|
|
|
$(DOCKER) build -t $(ORG)/$@:$(TAG) \
|
|
|
|
--build-arg IMAGE=$(ORG)/$@ \
|
|
|
|
--build-arg VERSION=$(TAG) \
|
|
|
|
--build-arg VCS_REF=`git rev-parse --short HEAD` \
|
|
|
|
--build-arg VCS_URL=`git config --get remote.origin.url` \
|
|
|
|
--build-arg BUILD_DATE=`date -u +"%Y-%m-%dT%H:%M:%SZ"` \
|
|
|
|
$@
|
2016-11-25 21:51:38 +01:00
|
|
|
rm -rf $@/imagefiles
|
2016-09-26 00:38:26 +02:00
|
|
|
|
|
|
|
#
|
|
|
|
# testing implicit rule
|
|
|
|
#
|
|
|
|
.SECONDEXPANSION:
|
|
|
|
$(addsuffix .test,$(STANDARD_IMAGES)): $$(basename $$@)
|
2016-11-29 02:01:39 +01:00
|
|
|
$(DOCKER) run $(RM) dockcross/$(basename $@) > $(BIN)/dockcross-$(basename $@) && chmod +x $(BIN)/dockcross-$(basename $@)
|
2016-09-26 00:38:26 +02:00
|
|
|
$(BIN)/dockcross-$(basename $@) python test/run.py $($@_ARGS)
|
|
|
|
|
2016-09-26 06:21:16 +02:00
|
|
|
#
|
|
|
|
# testing prerequisites implicit rule
|
|
|
|
#
|
|
|
|
test.prerequisites:
|
|
|
|
mkdir -p $(BIN)
|
|
|
|
|
2016-09-26 17:38:43 +02:00
|
|
|
$(addsuffix .test,base $(IMAGES)): test.prerequisites
|
2016-09-26 06:21:16 +02:00
|
|
|
|
2016-09-26 05:28:23 +02:00
|
|
|
.PHONY: base images $(IMAGES) test %.test
|