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
|
|
|
|
|
|
|
# Directory where to generate the dockcross script for each images (e.g bin/dockcross-manylinux-x64)
|
2016-07-16 08:45:23 +02: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"
|
2016-09-25 23:44:08 +02:00
|
|
|
STANDARD_IMAGES = android-arm linux-x86 linux-x64 linux-arm64 linux-armv5 linux-armv6 linux-armv7 windows-x86 windows-x64
|
|
|
|
|
2016-09-26 00:38:26 +02:00
|
|
|
# These images are associated with the 'images' target
|
2016-09-25 23:44:08 +02:00
|
|
|
IMAGES = $(STANDARD_IMAGES) manylinux-x64 manylinux-x86
|
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 00:20:02 +02:00
|
|
|
windows-x86.test_ARGS = --exe-suffix ".exe"
|
|
|
|
windows-x64.test_ARGS = --exe-suffix ".exe"
|
2016-09-26 00:03:28 +02:00
|
|
|
|
2016-09-26 00:38:26 +02:00
|
|
|
#
|
|
|
|
# images: This target builds all IMAGES (because it is the first one, it is built by default)
|
|
|
|
#
|
2016-09-25 19:53:01 +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-25 20:33:38 +02:00
|
|
|
test: base.test $(addsuffix .test,$(IMAGES))
|
2016-07-16 07:17:36 +02:00
|
|
|
|
2016-09-26 00:38:26 +02:00
|
|
|
#
|
|
|
|
# browser-asmjs
|
|
|
|
#
|
2016-09-25 21:44:22 +02:00
|
|
|
browser-asmjs: base
|
2016-07-06 21:33:35 +02:00
|
|
|
cp -r test browser-asmjs/
|
2016-07-16 05:46:08 +02:00
|
|
|
$(DOCKER) build -t $(ORG)/browser-asmjs browser-asmjs
|
2016-07-06 21:33:35 +02:00
|
|
|
rm -rf browser-asmjs/test
|
2015-05-19 23:34:05 +02:00
|
|
|
|
2016-09-25 21:44:22 +02:00
|
|
|
browser-asmjs.test: browser-asmjs
|
2016-07-16 08:45:23 +02:00
|
|
|
$(DOCKER) run --rm dockcross/browser-asmjs > $(BIN)/dockcross-browser-asmjs && chmod +x $(BIN)/dockcross-browser-asmjs
|
2016-07-19 05:27:51 +02:00
|
|
|
$(BIN)/dockcross-browser-asmjs python test/run.py --exe-suffix ".js"
|
2016-07-16 08:45:23 +02:00
|
|
|
|
2016-09-26 00:38:26 +02:00
|
|
|
#
|
|
|
|
# linux-ppc64le
|
|
|
|
#
|
2016-09-25 21:44:22 +02:00
|
|
|
linux-ppc64le: base
|
2016-07-16 05:46:08 +02:00
|
|
|
$(DOCKER) build -t $(ORG)/linux-ppc64le linux-ppc64le
|
2015-05-18 21:21:05 +02:00
|
|
|
|
2016-09-25 21:44:22 +02:00
|
|
|
linux-ppc64le.test: linux-ppc64le
|
2016-07-16 08:45:23 +02:00
|
|
|
$(DOCKER) run --rm dockcross/linux-ppc64le > $(BIN)/dockcross-linux-ppc64le && chmod +x $(BIN)/dockcross-linux-ppc64le
|
2016-07-19 05:27:51 +02:00
|
|
|
$(BIN)/dockcross-linux-ppc64le python test/run.py --languages C
|
2016-07-16 08:45:23 +02:00
|
|
|
|
2016-09-26 00:38:26 +02:00
|
|
|
#
|
|
|
|
# manylinux-x64
|
|
|
|
#
|
2016-09-20 17:35:18 +02:00
|
|
|
manylinux-x64/Dockerfile: manylinux-x64/Dockerfile.in common.docker
|
2016-09-20 19:17:15 +02:00
|
|
|
sed '/common.docker/ r common.docker' manylinux-x64/Dockerfile.in > manylinux-x64/Dockerfile
|
2016-09-20 17:35:18 +02:00
|
|
|
|
|
|
|
manylinux-x64: manylinux-x64/Dockerfile
|
|
|
|
$(DOCKER) build -t $(ORG)/manylinux-x64 -f manylinux-x64/Dockerfile .
|
2016-09-20 06:35:37 +02:00
|
|
|
|
2016-09-25 21:44:22 +02:00
|
|
|
manylinux-x64.test: manylinux-x64
|
2016-09-20 06:35:37 +02:00
|
|
|
$(DOCKER) run --rm dockcross/manylinux-x64 > $(BIN)/dockcross-manylinux-x64 && chmod +x $(BIN)/dockcross-manylinux-x64
|
2016-09-20 17:35:18 +02:00
|
|
|
$(BIN)/dockcross-manylinux-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
|
|
|
#
|
|
|
|
# manylinux-x86
|
|
|
|
#
|
2016-09-25 05:14:33 +02:00
|
|
|
manylinux-x86/Dockerfile: manylinux-x86/Dockerfile.in common.docker
|
|
|
|
sed '/common.docker/ r common.docker' manylinux-x86/Dockerfile.in > manylinux-x86/Dockerfile
|
|
|
|
|
|
|
|
manylinux-x86: manylinux-x86/Dockerfile
|
|
|
|
$(DOCKER) build -t $(ORG)/manylinux-x86 -f manylinux-x86/Dockerfile .
|
|
|
|
|
2016-09-25 21:44:22 +02:00
|
|
|
manylinux-x86.test: manylinux-x86
|
2016-09-25 05:14:33 +02:00
|
|
|
$(DOCKER) run --rm dockcross/manylinux-x86 > $(BIN)/dockcross-manylinux-x86 && chmod +x $(BIN)/dockcross-manylinux-x86
|
|
|
|
$(BIN)/dockcross-manylinux-x86 /opt/python/cp35-cp35m/bin/python test/run.py
|
|
|
|
|
2016-09-26 00:38:26 +02:00
|
|
|
#
|
|
|
|
# base
|
|
|
|
#
|
2016-09-20 06:35:37 +02:00
|
|
|
Dockerfile: Dockerfile.in common.docker
|
2016-09-20 19:17:15 +02:00
|
|
|
sed '/common.docker/ r common.docker' Dockerfile.in > Dockerfile
|
2016-09-20 06:35:37 +02:00
|
|
|
|
2015-05-04 23:32:58 +02:00
|
|
|
base: Dockerfile
|
2016-07-16 05:46:08 +02:00
|
|
|
$(DOCKER) build -t $(ORG)/base .
|
2015-02-01 04:18:38 +01:00
|
|
|
|
2016-09-25 21:44:22 +02:00
|
|
|
base.test: base
|
2016-07-16 19:55:04 +02:00
|
|
|
mkdir -p $(BIN)
|
2016-07-16 08:45:23 +02:00
|
|
|
$(DOCKER) run --rm dockcross/base > $(BIN)/dockcross-base && chmod +x $(BIN)/dockcross-base
|
|
|
|
|
2016-09-26 00:38:26 +02:00
|
|
|
#
|
|
|
|
# build implicit rule
|
|
|
|
#
|
|
|
|
$(STANDARD_IMAGES): base
|
|
|
|
$(DOCKER) build -t $(ORG)/$@ $@
|
|
|
|
|
|
|
|
#
|
|
|
|
# testing implicit rule
|
|
|
|
#
|
|
|
|
.SECONDEXPANSION:
|
|
|
|
$(addsuffix .test,$(STANDARD_IMAGES)): $$(basename $$@)
|
|
|
|
$(DOCKER) run --rm dockcross/$(basename $@) > $(BIN)/dockcross-$(basename $@) && chmod +x $(BIN)/dockcross-$(basename $@)
|
|
|
|
$(BIN)/dockcross-$(basename $@) python test/run.py $($@_ARGS)
|
|
|
|
|
2016-09-25 19:53:01 +02:00
|
|
|
.PHONY: base images $(IMAGES) tests %.test
|