Makefile: Rules for docker testing
This adds a group of make targets to run docker tests, all are available
in source tree without running ./configure.
The usage is shown with "make docker".
Besides the fixed ones, dynamic targets for building each image and
running each test in each image are generated automatically by make,
scanning $(SRC_PATH)/tests/docker/ files with specific patterns.
Alternative to manually list particular targets (docker-TEST@IMAGE)
set, you can control which tests/images to run by filtering variables,
TESTS= and IMAGES=, which are expressed in Makefile pattern syntax,
"foo% %bar ...". For example:
$ make docker-test IMAGES="ubuntu fedora"
Unfortunately, it's impossible to propagate "-j $JOBS" into make in
containers, however since each combination is made a first class target
in the top Makefile, "make -j$N docker-test" still parallels the tests
coarsely.
Still, $J is made a magic variable to let all make invocations in
containers to use -j$J.
Instead of providing a live version of the source tree to the docker
container we snapshot it with git-archive. This ensures the tree is in a
pristine state for whatever operations the container is going to run on
them.
Uncommitted changes known to files known by the git index will be
included in the snapshot if there are any.
Signed-off-by: Fam Zheng <famz@redhat.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-id: 1464755128-32490-5-git-send-email-famz@redhat.com
2016-06-01 07:25:17 +03:00
|
|
|
# Makefile for Docker tests
|
|
|
|
|
2021-02-02 16:39:50 +03:00
|
|
|
.PHONY: docker docker-help docker-test docker-clean docker-image docker-qemu-src
|
Makefile: Rules for docker testing
This adds a group of make targets to run docker tests, all are available
in source tree without running ./configure.
The usage is shown with "make docker".
Besides the fixed ones, dynamic targets for building each image and
running each test in each image are generated automatically by make,
scanning $(SRC_PATH)/tests/docker/ files with specific patterns.
Alternative to manually list particular targets (docker-TEST@IMAGE)
set, you can control which tests/images to run by filtering variables,
TESTS= and IMAGES=, which are expressed in Makefile pattern syntax,
"foo% %bar ...". For example:
$ make docker-test IMAGES="ubuntu fedora"
Unfortunately, it's impossible to propagate "-j $JOBS" into make in
containers, however since each combination is made a first class target
in the top Makefile, "make -j$N docker-test" still parallels the tests
coarsely.
Still, $J is made a magic variable to let all make invocations in
containers to use -j$J.
Instead of providing a live version of the source tree to the docker
container we snapshot it with git-archive. This ensures the tree is in a
pristine state for whatever operations the container is going to run on
them.
Uncommitted changes known to files known by the git index will be
included in the snapshot if there are any.
Signed-off-by: Fam Zheng <famz@redhat.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-id: 1464755128-32490-5-git-send-email-famz@redhat.com
2016-06-01 07:25:17 +03:00
|
|
|
|
2020-09-01 19:10:05 +03:00
|
|
|
NULL :=
|
|
|
|
SPACE := $(NULL) #
|
|
|
|
COMMA := ,
|
|
|
|
|
2023-05-25 12:51:45 +03:00
|
|
|
HOST_ARCH = $(shell uname -m)
|
2023-02-28 22:06:49 +03:00
|
|
|
USER = $(if $(NOUSER),,$(shell id -un))
|
|
|
|
UID = $(if $(NOUSER),,$(shell id -u))
|
2019-10-07 22:03:44 +03:00
|
|
|
|
Makefile: Rules for docker testing
This adds a group of make targets to run docker tests, all are available
in source tree without running ./configure.
The usage is shown with "make docker".
Besides the fixed ones, dynamic targets for building each image and
running each test in each image are generated automatically by make,
scanning $(SRC_PATH)/tests/docker/ files with specific patterns.
Alternative to manually list particular targets (docker-TEST@IMAGE)
set, you can control which tests/images to run by filtering variables,
TESTS= and IMAGES=, which are expressed in Makefile pattern syntax,
"foo% %bar ...". For example:
$ make docker-test IMAGES="ubuntu fedora"
Unfortunately, it's impossible to propagate "-j $JOBS" into make in
containers, however since each combination is made a first class target
in the top Makefile, "make -j$N docker-test" still parallels the tests
coarsely.
Still, $J is made a magic variable to let all make invocations in
containers to use -j$J.
Instead of providing a live version of the source tree to the docker
container we snapshot it with git-archive. This ensures the tree is in a
pristine state for whatever operations the container is going to run on
them.
Uncommitted changes known to files known by the git index will be
included in the snapshot if there are any.
Signed-off-by: Fam Zheng <famz@redhat.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-id: 1464755128-32490-5-git-send-email-famz@redhat.com
2016-06-01 07:25:17 +03:00
|
|
|
DOCKER_FILES_DIR := $(SRC_PATH)/tests/docker/dockerfiles
|
2021-04-01 13:25:21 +03:00
|
|
|
ifeq ($(HOST_ARCH),x86_64)
|
|
|
|
DOCKER_DEFAULT_REGISTRY := registry.gitlab.com/qemu-project/qemu
|
|
|
|
endif
|
|
|
|
DOCKER_REGISTRY := $(if $(REGISTRY),$(REGISTRY),$(DOCKER_DEFAULT_REGISTRY))
|
Makefile: Rules for docker testing
This adds a group of make targets to run docker tests, all are available
in source tree without running ./configure.
The usage is shown with "make docker".
Besides the fixed ones, dynamic targets for building each image and
running each test in each image are generated automatically by make,
scanning $(SRC_PATH)/tests/docker/ files with specific patterns.
Alternative to manually list particular targets (docker-TEST@IMAGE)
set, you can control which tests/images to run by filtering variables,
TESTS= and IMAGES=, which are expressed in Makefile pattern syntax,
"foo% %bar ...". For example:
$ make docker-test IMAGES="ubuntu fedora"
Unfortunately, it's impossible to propagate "-j $JOBS" into make in
containers, however since each combination is made a first class target
in the top Makefile, "make -j$N docker-test" still parallels the tests
coarsely.
Still, $J is made a magic variable to let all make invocations in
containers to use -j$J.
Instead of providing a live version of the source tree to the docker
container we snapshot it with git-archive. This ensures the tree is in a
pristine state for whatever operations the container is going to run on
them.
Uncommitted changes known to files known by the git index will be
included in the snapshot if there are any.
Signed-off-by: Fam Zheng <famz@redhat.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-id: 1464755128-32490-5-git-send-email-famz@redhat.com
2016-06-01 07:25:17 +03:00
|
|
|
|
2023-10-09 19:40:44 +03:00
|
|
|
RUNC ?= $(if $(shell command -v docker), docker, podman)
|
|
|
|
DOCKER_SCRIPT=$(SRC_PATH)/tests/docker/docker.py --engine $(RUNC)
|
2018-04-06 18:25:39 +03:00
|
|
|
|
Makefile: Rules for docker testing
This adds a group of make targets to run docker tests, all are available
in source tree without running ./configure.
The usage is shown with "make docker".
Besides the fixed ones, dynamic targets for building each image and
running each test in each image are generated automatically by make,
scanning $(SRC_PATH)/tests/docker/ files with specific patterns.
Alternative to manually list particular targets (docker-TEST@IMAGE)
set, you can control which tests/images to run by filtering variables,
TESTS= and IMAGES=, which are expressed in Makefile pattern syntax,
"foo% %bar ...". For example:
$ make docker-test IMAGES="ubuntu fedora"
Unfortunately, it's impossible to propagate "-j $JOBS" into make in
containers, however since each combination is made a first class target
in the top Makefile, "make -j$N docker-test" still parallels the tests
coarsely.
Still, $J is made a magic variable to let all make invocations in
containers to use -j$J.
Instead of providing a live version of the source tree to the docker
container we snapshot it with git-archive. This ensures the tree is in a
pristine state for whatever operations the container is going to run on
them.
Uncommitted changes known to files known by the git index will be
included in the snapshot if there are any.
Signed-off-by: Fam Zheng <famz@redhat.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-id: 1464755128-32490-5-git-send-email-famz@redhat.com
2016-06-01 07:25:17 +03:00
|
|
|
CUR_TIME := $(shell date +%Y-%m-%d-%H.%M.%S.$$$$)
|
2017-10-18 16:06:29 +03:00
|
|
|
DOCKER_SRC_COPY := $(BUILD_DIR)/docker-src.$(CUR_TIME)
|
Makefile: Rules for docker testing
This adds a group of make targets to run docker tests, all are available
in source tree without running ./configure.
The usage is shown with "make docker".
Besides the fixed ones, dynamic targets for building each image and
running each test in each image are generated automatically by make,
scanning $(SRC_PATH)/tests/docker/ files with specific patterns.
Alternative to manually list particular targets (docker-TEST@IMAGE)
set, you can control which tests/images to run by filtering variables,
TESTS= and IMAGES=, which are expressed in Makefile pattern syntax,
"foo% %bar ...". For example:
$ make docker-test IMAGES="ubuntu fedora"
Unfortunately, it's impossible to propagate "-j $JOBS" into make in
containers, however since each combination is made a first class target
in the top Makefile, "make -j$N docker-test" still parallels the tests
coarsely.
Still, $J is made a magic variable to let all make invocations in
containers to use -j$J.
Instead of providing a live version of the source tree to the docker
container we snapshot it with git-archive. This ensures the tree is in a
pristine state for whatever operations the container is going to run on
them.
Uncommitted changes known to files known by the git index will be
included in the snapshot if there are any.
Signed-off-by: Fam Zheng <famz@redhat.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-id: 1464755128-32490-5-git-send-email-famz@redhat.com
2016-06-01 07:25:17 +03:00
|
|
|
|
2018-08-18 06:03:37 +03:00
|
|
|
.DELETE_ON_ERROR: $(DOCKER_SRC_COPY)
|
Makefile: Rules for docker testing
This adds a group of make targets to run docker tests, all are available
in source tree without running ./configure.
The usage is shown with "make docker".
Besides the fixed ones, dynamic targets for building each image and
running each test in each image are generated automatically by make,
scanning $(SRC_PATH)/tests/docker/ files with specific patterns.
Alternative to manually list particular targets (docker-TEST@IMAGE)
set, you can control which tests/images to run by filtering variables,
TESTS= and IMAGES=, which are expressed in Makefile pattern syntax,
"foo% %bar ...". For example:
$ make docker-test IMAGES="ubuntu fedora"
Unfortunately, it's impossible to propagate "-j $JOBS" into make in
containers, however since each combination is made a first class target
in the top Makefile, "make -j$N docker-test" still parallels the tests
coarsely.
Still, $J is made a magic variable to let all make invocations in
containers to use -j$J.
Instead of providing a live version of the source tree to the docker
container we snapshot it with git-archive. This ensures the tree is in a
pristine state for whatever operations the container is going to run on
them.
Uncommitted changes known to files known by the git index will be
included in the snapshot if there are any.
Signed-off-by: Fam Zheng <famz@redhat.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-id: 1464755128-32490-5-git-send-email-famz@redhat.com
2016-06-01 07:25:17 +03:00
|
|
|
$(DOCKER_SRC_COPY):
|
|
|
|
@mkdir $@
|
2018-07-12 04:28:28 +03:00
|
|
|
$(if $(SRC_ARCHIVE), \
|
|
|
|
$(call quiet-command, cp "$(SRC_ARCHIVE)" $@/qemu.tar, \
|
|
|
|
"CP", "$@/qemu.tar"), \
|
|
|
|
$(call quiet-command, cd $(SRC_PATH) && scripts/archive-source.sh $@/qemu.tar, \
|
|
|
|
"GEN", "$@/qemu.tar"))
|
Makefile: Rules for docker testing
This adds a group of make targets to run docker tests, all are available
in source tree without running ./configure.
The usage is shown with "make docker".
Besides the fixed ones, dynamic targets for building each image and
running each test in each image are generated automatically by make,
scanning $(SRC_PATH)/tests/docker/ files with specific patterns.
Alternative to manually list particular targets (docker-TEST@IMAGE)
set, you can control which tests/images to run by filtering variables,
TESTS= and IMAGES=, which are expressed in Makefile pattern syntax,
"foo% %bar ...". For example:
$ make docker-test IMAGES="ubuntu fedora"
Unfortunately, it's impossible to propagate "-j $JOBS" into make in
containers, however since each combination is made a first class target
in the top Makefile, "make -j$N docker-test" still parallels the tests
coarsely.
Still, $J is made a magic variable to let all make invocations in
containers to use -j$J.
Instead of providing a live version of the source tree to the docker
container we snapshot it with git-archive. This ensures the tree is in a
pristine state for whatever operations the container is going to run on
them.
Uncommitted changes known to files known by the git index will be
included in the snapshot if there are any.
Signed-off-by: Fam Zheng <famz@redhat.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-id: 1464755128-32490-5-git-send-email-famz@redhat.com
2016-06-01 07:25:17 +03:00
|
|
|
$(call quiet-command, cp $(SRC_PATH)/tests/docker/run $@/run, \
|
2016-10-04 19:27:21 +03:00
|
|
|
"COPY","RUNNER")
|
Makefile: Rules for docker testing
This adds a group of make targets to run docker tests, all are available
in source tree without running ./configure.
The usage is shown with "make docker".
Besides the fixed ones, dynamic targets for building each image and
running each test in each image are generated automatically by make,
scanning $(SRC_PATH)/tests/docker/ files with specific patterns.
Alternative to manually list particular targets (docker-TEST@IMAGE)
set, you can control which tests/images to run by filtering variables,
TESTS= and IMAGES=, which are expressed in Makefile pattern syntax,
"foo% %bar ...". For example:
$ make docker-test IMAGES="ubuntu fedora"
Unfortunately, it's impossible to propagate "-j $JOBS" into make in
containers, however since each combination is made a first class target
in the top Makefile, "make -j$N docker-test" still parallels the tests
coarsely.
Still, $J is made a magic variable to let all make invocations in
containers to use -j$J.
Instead of providing a live version of the source tree to the docker
container we snapshot it with git-archive. This ensures the tree is in a
pristine state for whatever operations the container is going to run on
them.
Uncommitted changes known to files known by the git index will be
included in the snapshot if there are any.
Signed-off-by: Fam Zheng <famz@redhat.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-id: 1464755128-32490-5-git-send-email-famz@redhat.com
2016-06-01 07:25:17 +03:00
|
|
|
|
|
|
|
docker-qemu-src: $(DOCKER_SRC_COPY)
|
|
|
|
|
2022-04-19 12:10:14 +03:00
|
|
|
# General rule for building docker images.
|
Makefile: Rules for docker testing
This adds a group of make targets to run docker tests, all are available
in source tree without running ./configure.
The usage is shown with "make docker".
Besides the fixed ones, dynamic targets for building each image and
running each test in each image are generated automatically by make,
scanning $(SRC_PATH)/tests/docker/ files with specific patterns.
Alternative to manually list particular targets (docker-TEST@IMAGE)
set, you can control which tests/images to run by filtering variables,
TESTS= and IMAGES=, which are expressed in Makefile pattern syntax,
"foo% %bar ...". For example:
$ make docker-test IMAGES="ubuntu fedora"
Unfortunately, it's impossible to propagate "-j $JOBS" into make in
containers, however since each combination is made a first class target
in the top Makefile, "make -j$N docker-test" still parallels the tests
coarsely.
Still, $J is made a magic variable to let all make invocations in
containers to use -j$J.
Instead of providing a live version of the source tree to the docker
container we snapshot it with git-archive. This ensures the tree is in a
pristine state for whatever operations the container is going to run on
them.
Uncommitted changes known to files known by the git index will be
included in the snapshot if there are any.
Signed-off-by: Fam Zheng <famz@redhat.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-id: 1464755128-32490-5-git-send-email-famz@redhat.com
2016-06-01 07:25:17 +03:00
|
|
|
docker-image-%: $(DOCKER_FILES_DIR)/%.docker
|
2023-02-28 22:06:49 +03:00
|
|
|
$(call quiet-command, \
|
2023-03-15 20:43:01 +03:00
|
|
|
DOCKER_BUILDKIT=1 $(RUNC) build \
|
2023-02-28 22:06:49 +03:00
|
|
|
$(if $V,,--quiet) \
|
|
|
|
$(if $(NOCACHE),--no-cache, \
|
|
|
|
$(if $(DOCKER_REGISTRY),--cache-from $(DOCKER_REGISTRY)/qemu/$*)) \
|
|
|
|
--build-arg BUILDKIT_INLINE_CACHE=1 \
|
|
|
|
$(if $(NOUSER),, \
|
|
|
|
--build-arg USER=$(USER) \
|
2023-08-29 19:15:18 +03:00
|
|
|
--build-arg UID=$(UID)) \
|
|
|
|
-t qemu/$* - < $< $(if $V,,> /dev/null),\
|
|
|
|
"BUILD", $*)
|
2018-06-29 19:57:57 +03:00
|
|
|
|
|
|
|
# Special rule for debootstraped binfmt linux-user images
|
|
|
|
docker-binfmt-image-debian-%: $(DOCKER_FILES_DIR)/debian-bootstrap.docker
|
|
|
|
$(if $(EXECUTABLE),,\
|
|
|
|
$(error EXECUTABLE not set, debootstrap of debian-$* would fail))
|
|
|
|
$(if $(DEB_ARCH),,\
|
|
|
|
$(error DEB_ARCH not set, debootstrap of debian-$* would fail))
|
|
|
|
$(if $(DEB_TYPE),,\
|
|
|
|
$(error DEB_TYPE not set, debootstrap of debian-$* would fail))
|
2018-07-12 12:35:54 +03:00
|
|
|
$(if $(wildcard $(EXECUTABLE)), \
|
2018-06-29 22:41:26 +03:00
|
|
|
$(call quiet-command, \
|
|
|
|
DEB_ARCH=$(DEB_ARCH) \
|
2019-09-09 13:11:49 +03:00
|
|
|
DEB_TYPE=$(DEB_TYPE) \
|
|
|
|
$(if $(DEB_URL),DEB_URL=$(DEB_URL),) \
|
2020-07-24 09:45:03 +03:00
|
|
|
$(DOCKER_SCRIPT) build -t qemu/debian-$* -f $< \
|
2018-06-29 22:41:26 +03:00
|
|
|
$(if $V,,--quiet) $(if $(NOCACHE),--no-cache) \
|
|
|
|
$(if $(NOUSER),,--add-current-user) \
|
|
|
|
$(if $(EXTRA_FILES),--extra-files $(EXTRA_FILES)) \
|
|
|
|
$(if $(EXECUTABLE),--include-executable=$(EXECUTABLE)), \
|
|
|
|
"BUILD","binfmt debian-$* (debootstrapped)"), \
|
|
|
|
$(call quiet-command, \
|
2020-07-01 16:56:29 +03:00
|
|
|
$(DOCKER_SCRIPT) check --quiet qemu/debian-$* $< || \
|
2018-07-12 16:36:18 +03:00
|
|
|
{ echo "You will need to build $(EXECUTABLE)"; exit 1;},\
|
2018-06-29 22:41:26 +03:00
|
|
|
"CHECK", "debian-$* exists"))
|
2018-06-29 19:57:57 +03:00
|
|
|
|
2022-09-14 18:59:50 +03:00
|
|
|
# Special case cross-compiling x86_64 on non-x86_64 systems.
|
2019-10-07 22:03:44 +03:00
|
|
|
ifeq ($(HOST_ARCH),x86_64)
|
2019-08-14 18:25:50 +03:00
|
|
|
DOCKER_PARTIAL_IMAGES += debian-amd64-cross
|
|
|
|
else
|
|
|
|
DOCKER_PARTIAL_IMAGES += debian-amd64
|
|
|
|
endif
|
2018-04-23 15:54:09 +03:00
|
|
|
|
2019-08-15 22:40:48 +03:00
|
|
|
# For non-x86 hosts not all cross-compilers have been packaged
|
2019-10-07 22:03:44 +03:00
|
|
|
ifneq ($(HOST_ARCH),x86_64)
|
2022-09-14 18:59:41 +03:00
|
|
|
DOCKER_PARTIAL_IMAGES += debian-mipsel-cross debian-mips64el-cross
|
2019-08-15 22:40:48 +03:00
|
|
|
DOCKER_PARTIAL_IMAGES += debian-ppc64el-cross
|
|
|
|
DOCKER_PARTIAL_IMAGES += debian-s390x-cross
|
2021-02-11 15:27:43 +03:00
|
|
|
DOCKER_PARTIAL_IMAGES += fedora
|
2019-08-15 22:40:48 +03:00
|
|
|
endif
|
|
|
|
|
2022-02-25 20:20:05 +03:00
|
|
|
# alpine has no adduser
|
|
|
|
docker-image-alpine: NOUSER=1
|
|
|
|
|
2021-10-26 13:22:11 +03:00
|
|
|
debian-toolchain-run = \
|
|
|
|
$(if $(NOCACHE), \
|
|
|
|
$(call quiet-command, \
|
|
|
|
$(DOCKER_SCRIPT) build -t qemu/$1 -f $< \
|
|
|
|
$(if $V,,--quiet) --no-cache \
|
|
|
|
--registry $(DOCKER_REGISTRY) --extra-files \
|
|
|
|
$(DOCKER_FILES_DIR)/$1.d/build-toolchain.sh, \
|
|
|
|
"BUILD", $1), \
|
|
|
|
$(call quiet-command, \
|
|
|
|
$(DOCKER_SCRIPT) fetch $(if $V,,--quiet) \
|
|
|
|
qemu/$1 $(DOCKER_REGISTRY), \
|
|
|
|
"FETCH", $1) \
|
|
|
|
$(call quiet-command, \
|
|
|
|
$(DOCKER_SCRIPT) update $(if $V,,--quiet) \
|
|
|
|
qemu/$1 \
|
|
|
|
$(if $(NOUSER),,--add-current-user) \
|
|
|
|
"PREPARE", $1))
|
|
|
|
debian-toolchain = $(call debian-toolchain-run,$(patsubst docker-image-%,%,$1))
|
|
|
|
|
2021-10-26 13:22:12 +03:00
|
|
|
docker-image-debian-microblaze-cross: $(DOCKER_FILES_DIR)/debian-toolchain.docker \
|
|
|
|
$(DOCKER_FILES_DIR)/debian-microblaze-cross.d/build-toolchain.sh
|
|
|
|
$(call debian-toolchain, $@)
|
|
|
|
|
2021-10-26 13:22:11 +03:00
|
|
|
docker-image-debian-nios2-cross: $(DOCKER_FILES_DIR)/debian-toolchain.docker \
|
|
|
|
$(DOCKER_FILES_DIR)/debian-nios2-cross.d/build-toolchain.sh
|
|
|
|
$(call debian-toolchain, $@)
|
|
|
|
|
2018-07-09 13:51:57 +03:00
|
|
|
# These images may be good enough for building tests but not for test builds
|
2021-10-26 13:22:12 +03:00
|
|
|
DOCKER_PARTIAL_IMAGES += debian-microblaze-cross
|
2021-10-26 13:22:11 +03:00
|
|
|
DOCKER_PARTIAL_IMAGES += debian-nios2-cross
|
2019-08-13 19:09:43 +03:00
|
|
|
DOCKER_PARTIAL_IMAGES += debian-xtensa-cross
|
2021-09-30 19:36:35 +03:00
|
|
|
DOCKER_PARTIAL_IMAGES += fedora-cris-cross
|
2018-07-09 13:51:57 +03:00
|
|
|
|
2022-04-19 12:10:03 +03:00
|
|
|
# images that are only used to build other images
|
|
|
|
DOCKER_VIRTUAL_IMAGES := debian-bootstrap debian-toolchain
|
|
|
|
|
|
|
|
__IMAGES := $(sort $(filter-out $(DOCKER_VIRTUAL_IMAGES), $(notdir $(basename $(wildcard $(DOCKER_FILES_DIR)/*.docker)))))
|
|
|
|
DOCKER_IMAGES := $(if $(IMAGES), $(filter $(IMAGES), $(__IMAGES)), $(__IMAGES))
|
|
|
|
|
|
|
|
__TESTS := $(notdir $(shell find $(SRC_PATH)/tests/docker/ -name 'test-*' -type f))
|
|
|
|
DOCKER_TESTS := $(if $(TESTS), $(filter $(TESTS), $(__TESTS)), $(__TESTS))
|
|
|
|
|
Makefile: Rules for docker testing
This adds a group of make targets to run docker tests, all are available
in source tree without running ./configure.
The usage is shown with "make docker".
Besides the fixed ones, dynamic targets for building each image and
running each test in each image are generated automatically by make,
scanning $(SRC_PATH)/tests/docker/ files with specific patterns.
Alternative to manually list particular targets (docker-TEST@IMAGE)
set, you can control which tests/images to run by filtering variables,
TESTS= and IMAGES=, which are expressed in Makefile pattern syntax,
"foo% %bar ...". For example:
$ make docker-test IMAGES="ubuntu fedora"
Unfortunately, it's impossible to propagate "-j $JOBS" into make in
containers, however since each combination is made a first class target
in the top Makefile, "make -j$N docker-test" still parallels the tests
coarsely.
Still, $J is made a magic variable to let all make invocations in
containers to use -j$J.
Instead of providing a live version of the source tree to the docker
container we snapshot it with git-archive. This ensures the tree is in a
pristine state for whatever operations the container is going to run on
them.
Uncommitted changes known to files known by the git index will be
included in the snapshot if there are any.
Signed-off-by: Fam Zheng <famz@redhat.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-id: 1464755128-32490-5-git-send-email-famz@redhat.com
2016-06-01 07:25:17 +03:00
|
|
|
# Expand all the pre-requistes for each docker image and test combination
|
2022-04-19 12:10:04 +03:00
|
|
|
$(foreach i,$(filter-out $(DOCKER_PARTIAL_IMAGES),$(DOCKER_IMAGES)), \
|
2021-02-11 15:27:43 +03:00
|
|
|
$(foreach t,$(DOCKER_TESTS), \
|
Makefile: Rules for docker testing
This adds a group of make targets to run docker tests, all are available
in source tree without running ./configure.
The usage is shown with "make docker".
Besides the fixed ones, dynamic targets for building each image and
running each test in each image are generated automatically by make,
scanning $(SRC_PATH)/tests/docker/ files with specific patterns.
Alternative to manually list particular targets (docker-TEST@IMAGE)
set, you can control which tests/images to run by filtering variables,
TESTS= and IMAGES=, which are expressed in Makefile pattern syntax,
"foo% %bar ...". For example:
$ make docker-test IMAGES="ubuntu fedora"
Unfortunately, it's impossible to propagate "-j $JOBS" into make in
containers, however since each combination is made a first class target
in the top Makefile, "make -j$N docker-test" still parallels the tests
coarsely.
Still, $J is made a magic variable to let all make invocations in
containers to use -j$J.
Instead of providing a live version of the source tree to the docker
container we snapshot it with git-archive. This ensures the tree is in a
pristine state for whatever operations the container is going to run on
them.
Uncommitted changes known to files known by the git index will be
included in the snapshot if there are any.
Signed-off-by: Fam Zheng <famz@redhat.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-id: 1464755128-32490-5-git-send-email-famz@redhat.com
2016-06-01 07:25:17 +03:00
|
|
|
$(eval .PHONY: docker-$t@$i) \
|
2022-06-13 20:12:55 +03:00
|
|
|
$(eval docker-$t@$i: docker-image-$i; @$(MAKE) docker-run TEST=$t IMAGE=qemu/$i) \
|
Makefile: Rules for docker testing
This adds a group of make targets to run docker tests, all are available
in source tree without running ./configure.
The usage is shown with "make docker".
Besides the fixed ones, dynamic targets for building each image and
running each test in each image are generated automatically by make,
scanning $(SRC_PATH)/tests/docker/ files with specific patterns.
Alternative to manually list particular targets (docker-TEST@IMAGE)
set, you can control which tests/images to run by filtering variables,
TESTS= and IMAGES=, which are expressed in Makefile pattern syntax,
"foo% %bar ...". For example:
$ make docker-test IMAGES="ubuntu fedora"
Unfortunately, it's impossible to propagate "-j $JOBS" into make in
containers, however since each combination is made a first class target
in the top Makefile, "make -j$N docker-test" still parallels the tests
coarsely.
Still, $J is made a magic variable to let all make invocations in
containers to use -j$J.
Instead of providing a live version of the source tree to the docker
container we snapshot it with git-archive. This ensures the tree is in a
pristine state for whatever operations the container is going to run on
them.
Uncommitted changes known to files known by the git index will be
included in the snapshot if there are any.
Signed-off-by: Fam Zheng <famz@redhat.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-id: 1464755128-32490-5-git-send-email-famz@redhat.com
2016-06-01 07:25:17 +03:00
|
|
|
) \
|
|
|
|
$(foreach t,$(DOCKER_TESTS), \
|
2018-07-09 15:24:52 +03:00
|
|
|
$(eval docker-all-tests: docker-$t@$i) \
|
|
|
|
$(eval docker-$t: docker-$t@$i) \
|
Makefile: Rules for docker testing
This adds a group of make targets to run docker tests, all are available
in source tree without running ./configure.
The usage is shown with "make docker".
Besides the fixed ones, dynamic targets for building each image and
running each test in each image are generated automatically by make,
scanning $(SRC_PATH)/tests/docker/ files with specific patterns.
Alternative to manually list particular targets (docker-TEST@IMAGE)
set, you can control which tests/images to run by filtering variables,
TESTS= and IMAGES=, which are expressed in Makefile pattern syntax,
"foo% %bar ...". For example:
$ make docker-test IMAGES="ubuntu fedora"
Unfortunately, it's impossible to propagate "-j $JOBS" into make in
containers, however since each combination is made a first class target
in the top Makefile, "make -j$N docker-test" still parallels the tests
coarsely.
Still, $J is made a magic variable to let all make invocations in
containers to use -j$J.
Instead of providing a live version of the source tree to the docker
container we snapshot it with git-archive. This ensures the tree is in a
pristine state for whatever operations the container is going to run on
them.
Uncommitted changes known to files known by the git index will be
included in the snapshot if there are any.
Signed-off-by: Fam Zheng <famz@redhat.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-id: 1464755128-32490-5-git-send-email-famz@redhat.com
2016-06-01 07:25:17 +03:00
|
|
|
) \
|
|
|
|
)
|
|
|
|
|
|
|
|
docker:
|
2023-10-09 19:40:44 +03:00
|
|
|
@echo 'Build QEMU and run tests inside $(RUNC) containers'
|
Makefile: Rules for docker testing
This adds a group of make targets to run docker tests, all are available
in source tree without running ./configure.
The usage is shown with "make docker".
Besides the fixed ones, dynamic targets for building each image and
running each test in each image are generated automatically by make,
scanning $(SRC_PATH)/tests/docker/ files with specific patterns.
Alternative to manually list particular targets (docker-TEST@IMAGE)
set, you can control which tests/images to run by filtering variables,
TESTS= and IMAGES=, which are expressed in Makefile pattern syntax,
"foo% %bar ...". For example:
$ make docker-test IMAGES="ubuntu fedora"
Unfortunately, it's impossible to propagate "-j $JOBS" into make in
containers, however since each combination is made a first class target
in the top Makefile, "make -j$N docker-test" still parallels the tests
coarsely.
Still, $J is made a magic variable to let all make invocations in
containers to use -j$J.
Instead of providing a live version of the source tree to the docker
container we snapshot it with git-archive. This ensures the tree is in a
pristine state for whatever operations the container is going to run on
them.
Uncommitted changes known to files known by the git index will be
included in the snapshot if there are any.
Signed-off-by: Fam Zheng <famz@redhat.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-id: 1464755128-32490-5-git-send-email-famz@redhat.com
2016-06-01 07:25:17 +03:00
|
|
|
@echo
|
|
|
|
@echo 'Available targets:'
|
|
|
|
@echo
|
|
|
|
@echo ' docker: Print this help.'
|
2018-07-09 15:24:52 +03:00
|
|
|
@echo ' docker-all-tests: Run all image/test combinations.'
|
2019-03-22 00:25:28 +03:00
|
|
|
@echo ' docker-TEST: Run "TEST" on all image combinations.'
|
Makefile: Rules for docker testing
This adds a group of make targets to run docker tests, all are available
in source tree without running ./configure.
The usage is shown with "make docker".
Besides the fixed ones, dynamic targets for building each image and
running each test in each image are generated automatically by make,
scanning $(SRC_PATH)/tests/docker/ files with specific patterns.
Alternative to manually list particular targets (docker-TEST@IMAGE)
set, you can control which tests/images to run by filtering variables,
TESTS= and IMAGES=, which are expressed in Makefile pattern syntax,
"foo% %bar ...". For example:
$ make docker-test IMAGES="ubuntu fedora"
Unfortunately, it's impossible to propagate "-j $JOBS" into make in
containers, however since each combination is made a first class target
in the top Makefile, "make -j$N docker-test" still parallels the tests
coarsely.
Still, $J is made a magic variable to let all make invocations in
containers to use -j$J.
Instead of providing a live version of the source tree to the docker
container we snapshot it with git-archive. This ensures the tree is in a
pristine state for whatever operations the container is going to run on
them.
Uncommitted changes known to files known by the git index will be
included in the snapshot if there are any.
Signed-off-by: Fam Zheng <famz@redhat.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-id: 1464755128-32490-5-git-send-email-famz@redhat.com
2016-06-01 07:25:17 +03:00
|
|
|
@echo ' docker-clean: Kill and remove residual docker testing containers.'
|
|
|
|
@echo ' docker-TEST@IMAGE: Run "TEST" in container "IMAGE".'
|
|
|
|
@echo ' Note: "TEST" is one of the listed test name,'
|
|
|
|
@echo ' or a script name under $$QEMU_SRC/tests/docker/;'
|
2019-03-22 00:25:28 +03:00
|
|
|
@echo ' "IMAGE" is one of the listed container name.'
|
Makefile: Rules for docker testing
This adds a group of make targets to run docker tests, all are available
in source tree without running ./configure.
The usage is shown with "make docker".
Besides the fixed ones, dynamic targets for building each image and
running each test in each image are generated automatically by make,
scanning $(SRC_PATH)/tests/docker/ files with specific patterns.
Alternative to manually list particular targets (docker-TEST@IMAGE)
set, you can control which tests/images to run by filtering variables,
TESTS= and IMAGES=, which are expressed in Makefile pattern syntax,
"foo% %bar ...". For example:
$ make docker-test IMAGES="ubuntu fedora"
Unfortunately, it's impossible to propagate "-j $JOBS" into make in
containers, however since each combination is made a first class target
in the top Makefile, "make -j$N docker-test" still parallels the tests
coarsely.
Still, $J is made a magic variable to let all make invocations in
containers to use -j$J.
Instead of providing a live version of the source tree to the docker
container we snapshot it with git-archive. This ensures the tree is in a
pristine state for whatever operations the container is going to run on
them.
Uncommitted changes known to files known by the git index will be
included in the snapshot if there are any.
Signed-off-by: Fam Zheng <famz@redhat.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-id: 1464755128-32490-5-git-send-email-famz@redhat.com
2016-06-01 07:25:17 +03:00
|
|
|
@echo ' docker-image: Build all images.'
|
|
|
|
@echo ' docker-image-IMAGE: Build image "IMAGE".'
|
2019-03-22 00:25:28 +03:00
|
|
|
@echo ' docker-run: For manually running a "TEST" with "IMAGE".'
|
Makefile: Rules for docker testing
This adds a group of make targets to run docker tests, all are available
in source tree without running ./configure.
The usage is shown with "make docker".
Besides the fixed ones, dynamic targets for building each image and
running each test in each image are generated automatically by make,
scanning $(SRC_PATH)/tests/docker/ files with specific patterns.
Alternative to manually list particular targets (docker-TEST@IMAGE)
set, you can control which tests/images to run by filtering variables,
TESTS= and IMAGES=, which are expressed in Makefile pattern syntax,
"foo% %bar ...". For example:
$ make docker-test IMAGES="ubuntu fedora"
Unfortunately, it's impossible to propagate "-j $JOBS" into make in
containers, however since each combination is made a first class target
in the top Makefile, "make -j$N docker-test" still parallels the tests
coarsely.
Still, $J is made a magic variable to let all make invocations in
containers to use -j$J.
Instead of providing a live version of the source tree to the docker
container we snapshot it with git-archive. This ensures the tree is in a
pristine state for whatever operations the container is going to run on
them.
Uncommitted changes known to files known by the git index will be
included in the snapshot if there are any.
Signed-off-by: Fam Zheng <famz@redhat.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-id: 1464755128-32490-5-git-send-email-famz@redhat.com
2016-06-01 07:25:17 +03:00
|
|
|
@echo
|
|
|
|
@echo 'Available container images:'
|
|
|
|
@echo ' $(DOCKER_IMAGES)'
|
|
|
|
@echo
|
|
|
|
@echo 'Available tests:'
|
|
|
|
@echo ' $(DOCKER_TESTS)'
|
|
|
|
@echo
|
|
|
|
@echo 'Special variables:'
|
|
|
|
@echo ' TARGET_LIST=a,b,c Override target list in builds.'
|
2016-06-01 07:25:27 +03:00
|
|
|
@echo ' EXTRA_CONFIGURE_OPTS="..."'
|
|
|
|
@echo ' Extra configure options.'
|
2022-11-17 20:25:22 +03:00
|
|
|
@echo ' TEST_COMMAND="..." Override the default `make check` target.'
|
2022-02-25 20:20:04 +03:00
|
|
|
@echo ' IMAGES="a b c ..": Restrict available images to subset.'
|
|
|
|
@echo ' TESTS="x y z .." Restrict available tests to subset.'
|
Makefile: Rules for docker testing
This adds a group of make targets to run docker tests, all are available
in source tree without running ./configure.
The usage is shown with "make docker".
Besides the fixed ones, dynamic targets for building each image and
running each test in each image are generated automatically by make,
scanning $(SRC_PATH)/tests/docker/ files with specific patterns.
Alternative to manually list particular targets (docker-TEST@IMAGE)
set, you can control which tests/images to run by filtering variables,
TESTS= and IMAGES=, which are expressed in Makefile pattern syntax,
"foo% %bar ...". For example:
$ make docker-test IMAGES="ubuntu fedora"
Unfortunately, it's impossible to propagate "-j $JOBS" into make in
containers, however since each combination is made a first class target
in the top Makefile, "make -j$N docker-test" still parallels the tests
coarsely.
Still, $J is made a magic variable to let all make invocations in
containers to use -j$J.
Instead of providing a live version of the source tree to the docker
container we snapshot it with git-archive. This ensures the tree is in a
pristine state for whatever operations the container is going to run on
them.
Uncommitted changes known to files known by the git index will be
included in the snapshot if there are any.
Signed-off-by: Fam Zheng <famz@redhat.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-id: 1464755128-32490-5-git-send-email-famz@redhat.com
2016-06-01 07:25:17 +03:00
|
|
|
@echo ' J=[0..9]* Overrides the -jN parameter for make commands'
|
|
|
|
@echo ' (default is 1)'
|
|
|
|
@echo ' DEBUG=1 Stop and drop to shell in the created container'
|
|
|
|
@echo ' before running the command.'
|
2017-07-13 17:43:52 +03:00
|
|
|
@echo ' NETWORK=1 Enable virtual network interface with default backend.'
|
2017-11-08 05:47:19 +03:00
|
|
|
@echo ' NETWORK=$$BACKEND Enable virtual network interface with $$BACKEND.'
|
2021-02-02 16:39:47 +03:00
|
|
|
@echo ' NOUSER=1 Define to disable adding current user to containers passwd.'
|
Makefile: Rules for docker testing
This adds a group of make targets to run docker tests, all are available
in source tree without running ./configure.
The usage is shown with "make docker".
Besides the fixed ones, dynamic targets for building each image and
running each test in each image are generated automatically by make,
scanning $(SRC_PATH)/tests/docker/ files with specific patterns.
Alternative to manually list particular targets (docker-TEST@IMAGE)
set, you can control which tests/images to run by filtering variables,
TESTS= and IMAGES=, which are expressed in Makefile pattern syntax,
"foo% %bar ...". For example:
$ make docker-test IMAGES="ubuntu fedora"
Unfortunately, it's impossible to propagate "-j $JOBS" into make in
containers, however since each combination is made a first class target
in the top Makefile, "make -j$N docker-test" still parallels the tests
coarsely.
Still, $J is made a magic variable to let all make invocations in
containers to use -j$J.
Instead of providing a live version of the source tree to the docker
container we snapshot it with git-archive. This ensures the tree is in a
pristine state for whatever operations the container is going to run on
them.
Uncommitted changes known to files known by the git index will be
included in the snapshot if there are any.
Signed-off-by: Fam Zheng <famz@redhat.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-id: 1464755128-32490-5-git-send-email-famz@redhat.com
2016-06-01 07:25:17 +03:00
|
|
|
@echo ' NOCACHE=1 Ignore cache when build images.'
|
2016-07-19 16:20:45 +03:00
|
|
|
@echo ' EXECUTABLE=<path> Include executable in image.'
|
2017-06-02 21:56:08 +03:00
|
|
|
@echo ' EXTRA_FILES="<path> [... <path>]"'
|
|
|
|
@echo ' Include extra files in image.'
|
2020-07-01 16:56:36 +03:00
|
|
|
@echo ' REGISTRY=url Cache builds from registry (default:$(DOCKER_REGISTRY))'
|
Makefile: Rules for docker testing
This adds a group of make targets to run docker tests, all are available
in source tree without running ./configure.
The usage is shown with "make docker".
Besides the fixed ones, dynamic targets for building each image and
running each test in each image are generated automatically by make,
scanning $(SRC_PATH)/tests/docker/ files with specific patterns.
Alternative to manually list particular targets (docker-TEST@IMAGE)
set, you can control which tests/images to run by filtering variables,
TESTS= and IMAGES=, which are expressed in Makefile pattern syntax,
"foo% %bar ...". For example:
$ make docker-test IMAGES="ubuntu fedora"
Unfortunately, it's impossible to propagate "-j $JOBS" into make in
containers, however since each combination is made a first class target
in the top Makefile, "make -j$N docker-test" still parallels the tests
coarsely.
Still, $J is made a magic variable to let all make invocations in
containers to use -j$J.
Instead of providing a live version of the source tree to the docker
container we snapshot it with git-archive. This ensures the tree is in a
pristine state for whatever operations the container is going to run on
them.
Uncommitted changes known to files known by the git index will be
included in the snapshot if there are any.
Signed-off-by: Fam Zheng <famz@redhat.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-id: 1464755128-32490-5-git-send-email-famz@redhat.com
2016-06-01 07:25:17 +03:00
|
|
|
|
2021-02-02 16:39:50 +03:00
|
|
|
docker-help: docker
|
|
|
|
|
2022-04-19 12:10:03 +03:00
|
|
|
# Use a global constant ccache directory to speed up repetitive builds
|
|
|
|
DOCKER_CCACHE_DIR := $$HOME/.cache/qemu-docker-ccache
|
|
|
|
|
2016-10-11 19:16:24 +03:00
|
|
|
# This rule if for directly running against an arbitrary docker target.
|
|
|
|
# It is called by the expanded docker targets (e.g. make
|
2022-04-19 12:10:05 +03:00
|
|
|
# docker-test-foo@bar) which will also ensure the image is up to date.
|
2016-10-11 19:16:24 +03:00
|
|
|
#
|
|
|
|
# For example: make docker-run TEST="test-quick" IMAGE="debian:arm64" EXECUTABLE=./aarch64-linux-user/qemu-aarch64
|
|
|
|
#
|
|
|
|
docker-run: docker-qemu-src
|
Makefile: Rules for docker testing
This adds a group of make targets to run docker tests, all are available
in source tree without running ./configure.
The usage is shown with "make docker".
Besides the fixed ones, dynamic targets for building each image and
running each test in each image are generated automatically by make,
scanning $(SRC_PATH)/tests/docker/ files with specific patterns.
Alternative to manually list particular targets (docker-TEST@IMAGE)
set, you can control which tests/images to run by filtering variables,
TESTS= and IMAGES=, which are expressed in Makefile pattern syntax,
"foo% %bar ...". For example:
$ make docker-test IMAGES="ubuntu fedora"
Unfortunately, it's impossible to propagate "-j $JOBS" into make in
containers, however since each combination is made a first class target
in the top Makefile, "make -j$N docker-test" still parallels the tests
coarsely.
Still, $J is made a magic variable to let all make invocations in
containers to use -j$J.
Instead of providing a live version of the source tree to the docker
container we snapshot it with git-archive. This ensures the tree is in a
pristine state for whatever operations the container is going to run on
them.
Uncommitted changes known to files known by the git index will be
included in the snapshot if there are any.
Signed-off-by: Fam Zheng <famz@redhat.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-id: 1464755128-32490-5-git-send-email-famz@redhat.com
2016-06-01 07:25:17 +03:00
|
|
|
@mkdir -p "$(DOCKER_CCACHE_DIR)"
|
2016-10-11 19:16:24 +03:00
|
|
|
@if test -z "$(IMAGE)" || test -z "$(TEST)"; \
|
|
|
|
then echo "Invalid target $(IMAGE)/$(TEST)"; exit 1; \
|
Makefile: Rules for docker testing
This adds a group of make targets to run docker tests, all are available
in source tree without running ./configure.
The usage is shown with "make docker".
Besides the fixed ones, dynamic targets for building each image and
running each test in each image are generated automatically by make,
scanning $(SRC_PATH)/tests/docker/ files with specific patterns.
Alternative to manually list particular targets (docker-TEST@IMAGE)
set, you can control which tests/images to run by filtering variables,
TESTS= and IMAGES=, which are expressed in Makefile pattern syntax,
"foo% %bar ...". For example:
$ make docker-test IMAGES="ubuntu fedora"
Unfortunately, it's impossible to propagate "-j $JOBS" into make in
containers, however since each combination is made a first class target
in the top Makefile, "make -j$N docker-test" still parallels the tests
coarsely.
Still, $J is made a magic variable to let all make invocations in
containers to use -j$J.
Instead of providing a live version of the source tree to the docker
container we snapshot it with git-archive. This ensures the tree is in a
pristine state for whatever operations the container is going to run on
them.
Uncommitted changes known to files known by the git index will be
included in the snapshot if there are any.
Signed-off-by: Fam Zheng <famz@redhat.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-id: 1464755128-32490-5-git-send-email-famz@redhat.com
2016-06-01 07:25:17 +03:00
|
|
|
fi
|
2016-10-11 19:16:24 +03:00
|
|
|
$(if $(EXECUTABLE), \
|
|
|
|
$(call quiet-command, \
|
2018-04-06 18:25:39 +03:00
|
|
|
$(DOCKER_SCRIPT) update \
|
2021-05-12 13:20:23 +03:00
|
|
|
$(IMAGE) --executable $(EXECUTABLE), \
|
2016-10-11 19:16:24 +03:00
|
|
|
" COPYING $(EXECUTABLE) to $(IMAGE)"))
|
|
|
|
$(call quiet-command, \
|
2023-02-28 22:06:50 +03:00
|
|
|
$(RUNC) run \
|
|
|
|
--rm \
|
|
|
|
$(if $(NOUSER),,-u $(UID)) \
|
2017-09-05 05:56:11 +03:00
|
|
|
--security-opt seccomp=unconfined \
|
2017-10-13 04:19:54 +03:00
|
|
|
$(if $(DEBUG),-ti,) \
|
2017-07-13 17:43:52 +03:00
|
|
|
$(if $(NETWORK),$(if $(subst $(NETWORK),,1),--net=$(NETWORK)),--net=none) \
|
2018-05-21 13:35:04 +03:00
|
|
|
-e TARGET_LIST=$(subst $(SPACE),$(COMMA),$(TARGET_LIST)) \
|
2016-10-11 19:16:24 +03:00
|
|
|
-e EXTRA_CONFIGURE_OPTS="$(EXTRA_CONFIGURE_OPTS)" \
|
2022-11-17 20:25:22 +03:00
|
|
|
-e TEST_COMMAND="$(TEST_COMMAND)" \
|
2016-10-11 19:16:24 +03:00
|
|
|
-e V=$V -e J=$J -e DEBUG=$(DEBUG) \
|
|
|
|
-e SHOW_ENV=$(SHOW_ENV) \
|
2017-09-25 10:54:58 +03:00
|
|
|
$(if $(NOUSER),, \
|
|
|
|
-e CCACHE_DIR=/var/tmp/ccache \
|
|
|
|
-v $(DOCKER_CCACHE_DIR):/var/tmp/ccache:z \
|
|
|
|
) \
|
2016-10-11 19:16:24 +03:00
|
|
|
-v $$(readlink -e $(DOCKER_SRC_COPY)):/var/tmp/qemu:z$(COMMA)ro \
|
|
|
|
$(IMAGE) \
|
|
|
|
/var/tmp/qemu/run \
|
|
|
|
$(TEST), " RUN $(TEST) in ${IMAGE}")
|
2017-10-17 10:12:46 +03:00
|
|
|
$(call quiet-command, rm -r $(DOCKER_SRC_COPY), \
|
|
|
|
" CLEANUP $(DOCKER_SRC_COPY)")
|
2016-10-11 19:16:24 +03:00
|
|
|
|
2022-04-19 12:10:03 +03:00
|
|
|
docker-image: ${DOCKER_IMAGES:%=docker-image-%}
|
|
|
|
|
Makefile: Rules for docker testing
This adds a group of make targets to run docker tests, all are available
in source tree without running ./configure.
The usage is shown with "make docker".
Besides the fixed ones, dynamic targets for building each image and
running each test in each image are generated automatically by make,
scanning $(SRC_PATH)/tests/docker/ files with specific patterns.
Alternative to manually list particular targets (docker-TEST@IMAGE)
set, you can control which tests/images to run by filtering variables,
TESTS= and IMAGES=, which are expressed in Makefile pattern syntax,
"foo% %bar ...". For example:
$ make docker-test IMAGES="ubuntu fedora"
Unfortunately, it's impossible to propagate "-j $JOBS" into make in
containers, however since each combination is made a first class target
in the top Makefile, "make -j$N docker-test" still parallels the tests
coarsely.
Still, $J is made a magic variable to let all make invocations in
containers to use -j$J.
Instead of providing a live version of the source tree to the docker
container we snapshot it with git-archive. This ensures the tree is in a
pristine state for whatever operations the container is going to run on
them.
Uncommitted changes known to files known by the git index will be
included in the snapshot if there are any.
Signed-off-by: Fam Zheng <famz@redhat.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-id: 1464755128-32490-5-git-send-email-famz@redhat.com
2016-06-01 07:25:17 +03:00
|
|
|
docker-clean:
|
2018-04-06 18:25:39 +03:00
|
|
|
$(call quiet-command, $(DOCKER_SCRIPT) clean)
|