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