1 # Makefile for Docker tests
3 .PHONY: docker docker-test docker-clean docker-image docker-qemu-src
5 DOCKER_SUFFIX := .docker
6 DOCKER_FILES_DIR := $(SRC_PATH)/tests/docker/dockerfiles
7 # we don't run tests on intermediate images (used as base by another image)
8 DOCKER_PARTIAL_IMAGES := debian9 debian10
9 DOCKER_PARTIAL_IMAGES += debian9-mxe debian-bootstrap
10 DOCKER_IMAGES := $(sort $(notdir $(basename $(wildcard $(DOCKER_FILES_DIR)/*.docker))))
11 DOCKER_TARGETS := $(patsubst %,docker-image-%,$(DOCKER_IMAGES))
12 # Use a global constant ccache directory to speed up repetitive builds
13 DOCKER_CCACHE_DIR := $$HOME/.cache/qemu-docker-ccache
15 DOCKER_TESTS := $(notdir $(shell \
16 find $(SRC_PATH)/tests/docker/ -name 'test-*' -type f))
18 DOCKER_TOOLS := travis
22 DOCKER_SCRIPT=$(SRC_PATH)/tests/docker/docker.py --engine $(ENGINE)
27 CUR_TIME := $(shell date +%Y-%m-%d-%H.%M.%S.$$$$)
28 DOCKER_SRC_COPY := $(BUILD_DIR)/docker-src.$(CUR_TIME)
30 .DELETE_ON_ERROR: $(DOCKER_SRC_COPY)
33 $(if $(SRC_ARCHIVE), \
34 $(call quiet-command, cp "$(SRC_ARCHIVE)" $@/qemu.tar, \
35 "CP", "$@/qemu.tar"), \
36 $(call quiet-command, cd $(SRC_PATH) && scripts/archive-source.sh $@/qemu.tar, \
37 "GEN", "$@/qemu.tar"))
38 $(call quiet-command, cp $(SRC_PATH)/tests/docker/run $@/run, \
41 docker-qemu-src: $(DOCKER_SRC_COPY)
43 docker-image: ${DOCKER_TARGETS}
45 # General rule for building docker images. If we are a sub-make
46 # invoked with SKIP_DOCKER_BUILD we still check the image is up to date
48 ifdef SKIP_DOCKER_BUILD
49 docker-image-%: $(DOCKER_FILES_DIR)/%.docker
50 $(call quiet-command, \
51 $(DOCKER_SCRIPT) check --quiet qemu:$* $<, \
54 docker-image-%: $(DOCKER_FILES_DIR)/%.docker
55 $(call quiet-command,\
56 $(DOCKER_SCRIPT) build qemu:$* $< \
57 $(if $V,,--quiet) $(if $(NOCACHE),--no-cache) \
58 $(if $(NOUSER),,--add-current-user) \
59 $(if $(EXTRA_FILES),--extra-files $(EXTRA_FILES))\
60 $(if $(EXECUTABLE),--include-executable=$(EXECUTABLE)),\
63 # Special rule for debootstraped binfmt linux-user images
64 docker-binfmt-image-debian-%: $(DOCKER_FILES_DIR)/debian-bootstrap.docker
66 $(error EXECUTABLE not set, debootstrap of debian-$* would fail))
68 $(error DEB_ARCH not set, debootstrap of debian-$* would fail))
70 $(error DEB_TYPE not set, debootstrap of debian-$* would fail))
71 $(if $(wildcard $(EXECUTABLE)), \
72 $(call quiet-command, \
73 DEB_ARCH=$(DEB_ARCH) \
74 DEB_TYPE=$(DEB_TYPE) \
75 $(if $(DEB_URL),DEB_URL=$(DEB_URL),) \
76 $(DOCKER_SCRIPT) build qemu:debian-$* $< \
77 $(if $V,,--quiet) $(if $(NOCACHE),--no-cache) \
78 $(if $(NOUSER),,--add-current-user) \
79 $(if $(EXTRA_FILES),--extra-files $(EXTRA_FILES)) \
80 $(if $(EXECUTABLE),--include-executable=$(EXECUTABLE)), \
81 "BUILD","binfmt debian-$* (debootstrapped)"), \
82 $(call quiet-command, \
83 $(DOCKER_SCRIPT) check --quiet qemu:debian-$* $< || \
84 { echo "You will need to build $(EXECUTABLE)"; exit 1;},\
85 "CHECK", "debian-$* exists"))
89 # Enforce dependencies for composite images
90 docker-image-debian9-mxe: docker-image-debian9
92 docker-image-debian-amd64: docker-image-debian9
93 DOCKER_PARTIAL_IMAGES += debian-amd64-cross
95 docker-image-debian-amd64-cross: docker-image-debian10
96 DOCKER_PARTIAL_IMAGES += debian-amd64
98 docker-image-debian-armel-cross: docker-image-debian9
99 docker-image-debian-armhf-cross: docker-image-debian9
100 docker-image-debian-mips-cross: docker-image-debian9
101 docker-image-debian-mipsel-cross: docker-image-debian9
102 docker-image-debian-mips64el-cross: docker-image-debian9
103 docker-image-debian-ppc64el-cross: docker-image-debian9
104 docker-image-debian-s390x-cross: docker-image-debian9
105 docker-image-debian-win32-cross: docker-image-debian9-mxe
106 docker-image-debian-win64-cross: docker-image-debian9-mxe
108 # For non-x86 hosts not all cross-compilers have been packaged
109 ifneq ($(ARCH),x86_64)
110 DOCKER_PARTIAL_IMAGES += debian-mips-cross debian-mipsel-cross debian-mips64el-cross
111 DOCKER_PARTIAL_IMAGES += debian-ppc64el-cross
112 DOCKER_PARTIAL_IMAGES += debian-s390x-cross
113 DOCKER_PARTIAL_IMAGES += debian-win32-cross debian-win64-cross
114 DOCKER_PARTIAL_IMAGES += fedora travis
117 docker-image-debian-alpha-cross: docker-image-debian10
118 docker-image-debian-arm64-cross: docker-image-debian10
119 docker-image-debian-hppa-cross: docker-image-debian10
120 docker-image-debian-m68k-cross: docker-image-debian10
121 docker-image-debian-mips64-cross: docker-image-debian10
122 docker-image-debian-powerpc-cross: docker-image-debian10
123 docker-image-debian-ppc64-cross: docker-image-debian10
124 docker-image-debian-riscv64-cross: docker-image-debian10
125 docker-image-debian-sh4-cross: docker-image-debian10
126 docker-image-debian-sparc64-cross: docker-image-debian10
128 docker-image-travis: NOUSER=1
130 # Specialist build images, sometimes very limited tools
131 docker-image-tricore-cross: docker-image-debian9
133 # These images may be good enough for building tests but not for test builds
134 DOCKER_PARTIAL_IMAGES += debian-alpha-cross
135 DOCKER_PARTIAL_IMAGES += debian-hppa-cross
136 DOCKER_PARTIAL_IMAGES += debian-m68k-cross debian-mips64-cross
137 DOCKER_PARTIAL_IMAGES += debian-powerpc-cross debian-ppc64-cross
138 DOCKER_PARTIAL_IMAGES += debian-riscv64-cross
139 DOCKER_PARTIAL_IMAGES += debian-sh4-cross debian-sparc64-cross
140 DOCKER_PARTIAL_IMAGES += debian-tricore-cross
141 DOCKER_PARTIAL_IMAGES += debian-xtensa-cross
142 DOCKER_PARTIAL_IMAGES += fedora-i386-cross fedora-cris-cross
144 # Rules for building linux-user powered images
146 # These are slower than using native cross compiler setups but can
147 # work around issues with poorly working multi-arch systems and broken
150 # Expand all the pre-requistes for each docker image and test combination
151 $(foreach i,$(filter-out $(DOCKER_PARTIAL_IMAGES),$(DOCKER_IMAGES)), \
152 $(foreach t,$(DOCKER_TESTS) $(DOCKER_TOOLS), \
153 $(eval .PHONY: docker-$t@$i) \
154 $(eval docker-$t@$i: docker-image-$i docker-run-$t@$i) \
156 $(foreach t,$(DOCKER_TESTS), \
157 $(eval docker-all-tests: docker-$t@$i) \
158 $(eval docker-$t: docker-$t@$i) \
163 @echo 'Build QEMU and run tests inside Docker or Podman containers'
165 @echo 'Available targets:'
167 @echo ' docker: Print this help.'
168 @echo ' docker-all-tests: Run all image/test combinations.'
169 @echo ' docker-TEST: Run "TEST" on all image combinations.'
170 @echo ' docker-clean: Kill and remove residual docker testing containers.'
171 @echo ' docker-TEST@IMAGE: Run "TEST" in container "IMAGE".'
172 @echo ' Note: "TEST" is one of the listed test name,'
173 @echo ' or a script name under $$QEMU_SRC/tests/docker/;'
174 @echo ' "IMAGE" is one of the listed container name.'
175 @echo ' docker-image: Build all images.'
176 @echo ' docker-image-IMAGE: Build image "IMAGE".'
177 @echo ' docker-run: For manually running a "TEST" with "IMAGE".'
179 @echo 'Available container images:'
180 @echo ' $(DOCKER_IMAGES)'
181 ifneq ($(DOCKER_USER_IMAGES),)
183 @echo 'Available linux-user images (docker-binfmt-image-debian-%):'
184 @echo ' $(DOCKER_USER_IMAGES)'
187 @echo 'Available tests:'
188 @echo ' $(DOCKER_TESTS)'
190 @echo 'Available tools:'
191 @echo ' $(DOCKER_TOOLS)'
193 @echo 'Special variables:'
194 @echo ' TARGET_LIST=a,b,c Override target list in builds.'
195 @echo ' EXTRA_CONFIGURE_OPTS="..."'
196 @echo ' Extra configure options.'
197 @echo ' IMAGES="a b c ..": Filters which images to build or run.'
198 @echo ' TESTS="x y z .." Filters which tests to run (for docker-test).'
199 @echo ' J=[0..9]* Overrides the -jN parameter for make commands'
200 @echo ' (default is 1)'
201 @echo ' DEBUG=1 Stop and drop to shell in the created container'
202 @echo ' before running the command.'
203 @echo ' NETWORK=1 Enable virtual network interface with default backend.'
204 @echo ' NETWORK=$$BACKEND Enable virtual network interface with $$BACKEND.'
205 @echo ' NOUSER Define to disable adding current user to containers passwd.'
206 @echo ' NOCACHE=1 Ignore cache when build images.'
207 @echo ' EXECUTABLE=<path> Include executable in image.'
208 @echo ' EXTRA_FILES="<path> [... <path>]"'
209 @echo ' Include extra files in image.'
210 @echo ' ENGINE=auto/docker/podman'
211 @echo ' Specify which container engine to run.'
213 # This rule if for directly running against an arbitrary docker target.
214 # It is called by the expanded docker targets (e.g. make
215 # docker-test-foo@bar) which will do additional verification.
217 # For example: make docker-run TEST="test-quick" IMAGE="debian:arm64" EXECUTABLE=./aarch64-linux-user/qemu-aarch64
219 docker-run: docker-qemu-src
220 @mkdir -p "$(DOCKER_CCACHE_DIR)"
221 @if test -z "$(IMAGE)" || test -z "$(TEST)"; \
222 then echo "Invalid target $(IMAGE)/$(TEST)"; exit 1; \
224 $(if $(EXECUTABLE), \
225 $(call quiet-command, \
226 $(DOCKER_SCRIPT) update \
227 $(IMAGE) $(EXECUTABLE), \
228 " COPYING $(EXECUTABLE) to $(IMAGE)"))
229 $(call quiet-command, \
230 $(DOCKER_SCRIPT) run \
231 $(if $(NOUSER),,--run-as-current-user) \
232 --security-opt seccomp=unconfined \
234 $(if $(DEBUG),-ti,) \
235 $(if $(NETWORK),$(if $(subst $(NETWORK),,1),--net=$(NETWORK)),--net=none) \
236 -e TARGET_LIST=$(subst $(SPACE),$(COMMA),$(TARGET_LIST)) \
237 -e EXTRA_CONFIGURE_OPTS="$(EXTRA_CONFIGURE_OPTS)" \
238 -e V=$V -e J=$J -e DEBUG=$(DEBUG) \
239 -e SHOW_ENV=$(SHOW_ENV) \
241 -e CCACHE_DIR=/var/tmp/ccache \
242 -v $(DOCKER_CCACHE_DIR):/var/tmp/ccache:z \
244 -v $$(readlink -e $(DOCKER_SRC_COPY)):/var/tmp/qemu:z$(COMMA)ro \
247 $(TEST), " RUN $(TEST) in ${IMAGE}")
248 $(call quiet-command, rm -r $(DOCKER_SRC_COPY), \
249 " CLEANUP $(DOCKER_SRC_COPY)")
253 # Of the form docker-TEST-FOO@IMAGE-BAR which will then be expanded into a call to "make docker-run"
254 docker-run-%: CMD = $(shell echo '$@' | sed -e 's/docker-run-\([^@]*\)@\(.*\)/\1/')
255 docker-run-%: IMAGE = $(shell echo '$@' | sed -e 's/docker-run-\([^@]*\)@\(.*\)/\2/')
257 @$(MAKE) docker-run TEST=$(CMD) IMAGE=qemu:$(IMAGE)
260 $(call quiet-command, $(DOCKER_SCRIPT) clean)