qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: "Alex Bennée" <alex.bennee@linaro.org>
To: cota@braap.org, famz@redhat.com, berrange@redhat.com,
	f4bug@amsat.org, richard.henderson@linaro.org, balrogg@gmail.com,
	aurelien@aurel32.net, agraf@suse.de
Cc: pbonzini@redhat.com, qemu-devel@nongnu.org,
	"Alex Bennée" <alex.bennee@linaro.org>
Subject: [Qemu-devel] [PATCH v2 11/21] docker: filter out linux-user builds for mingw
Date: Fri, 29 Jun 2018 21:52:22 +0100	[thread overview]
Message-ID: <20180629205232.27190-12-alex.bennee@linaro.org> (raw)
In-Reply-To: <20180629205232.27190-1-alex.bennee@linaro.org>

The recent change from TARGET_DIRS to TARGET_LIST (208ecb3e1) had the
effect of defaulting all docker builds to the current configured set
of targets. This is actually reasonable behaviour but does run into
problems if you have linux-user builds configured and you want to test
the windows cross builds. This commit fixes that by adding a
DOCKER_FILTER_TARGETS variable which is special-cased for mingw builds
so we don't pass the whole set down.

Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
---
 tests/docker/Makefile.include | 14 ++++++++++++--
 1 file changed, 12 insertions(+), 2 deletions(-)

diff --git a/tests/docker/Makefile.include b/tests/docker/Makefile.include
index 91d9665517..1813ec0781 100644
--- a/tests/docker/Makefile.include
+++ b/tests/docker/Makefile.include
@@ -20,6 +20,9 @@ DOCKER_SCRIPT=$(SRC_PATH)/tests/docker/docker.py
 TESTS ?= %
 IMAGES ?= %
 
+# This is used to filter targets from some docker builds
+DOCKER_FILTER_TARGETS ?=
+
 CUR_TIME := $(shell date +%Y-%m-%d-%H.%M.%S.$$$$)
 DOCKER_SRC_COPY := $(BUILD_DIR)/docker-src.$(CUR_TIME)
 
@@ -108,6 +111,12 @@ $(foreach i,$(DOCKER_IMAGES) $(DOCKER_DEPRECATED_IMAGES), \
 	) \
 )
 
+# Special cases
+#  mingw/windows builds cannot build linux-user
+docker-%-win32-cross: DOCKER_FILTER_TARGETS = %-linux-user
+docker-%-win64-cross: DOCKER_FILTER_TARGETS = %-linux-user
+docker-test-mingw@%: DOCKER_FILTER_TARGETS = %-linux-user
+
 docker:
 	@echo 'Build QEMU and run tests inside Docker containers'
 	@echo
@@ -174,7 +183,7 @@ docker-run: docker-qemu-src
 			$(if $V,,--rm) 					\
 			$(if $(DEBUG),-ti,)				\
 			$(if $(NETWORK),$(if $(subst $(NETWORK),,1),--net=$(NETWORK)),--net=none) \
-			-e TARGET_LIST=$(subst $(SPACE),$(COMMA),$(TARGET_LIST))	\
+			-e TARGET_LIST=$(subst $(SPACE),$(COMMA),$(filter-out $(DOCKER_FILTER_TARGETS),$(TARGET_LIST)))	\
 			-e EXTRA_CONFIGURE_OPTS="$(EXTRA_CONFIGURE_OPTS)" \
 			-e V=$V -e J=$J -e DEBUG=$(DEBUG)		\
 			-e SHOW_ENV=$(SHOW_ENV) 			\
@@ -195,7 +204,8 @@ docker-run: docker-qemu-src
 docker-run-%: CMD = $(shell echo '$@' | sed -e 's/docker-run-\([^@]*\)@\(.*\)/\1/')
 docker-run-%: IMAGE = $(shell echo '$@' | sed -e 's/docker-run-\([^@]*\)@\(.*\)/\2/')
 docker-run-%:
-	@$(MAKE) docker-run TEST=$(CMD) IMAGE=qemu:$(IMAGE)
+	@$(MAKE) docker-run TEST=$(CMD) IMAGE=qemu:$(IMAGE) DOCKER_FILTER_TARGETS=$(DOCKER_FILTER_TARGETS)
+
 
 docker-clean:
 	$(call quiet-command, $(DOCKER_SCRIPT) clean)
-- 
2.17.1

  parent reply	other threads:[~2018-06-29 20:52 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-06-29 20:52 [Qemu-devel] [PATCH v2 00/21] Travis, Code Coverage and Cross Build updates Alex Bennée
2018-06-29 20:52 ` [Qemu-devel] [PATCH v2 01/21] travis: do not waste time cloning unused submodules Alex Bennée
2018-06-29 20:52 ` [Qemu-devel] [PATCH v2 02/21] travis: test out-of-tree builds Alex Bennée
2018-06-29 20:52 ` [Qemu-devel] [PATCH v2 03/21] build-system: remove per-test GCOV reporting Alex Bennée
2018-06-29 20:52 ` [Qemu-devel] [PATCH v2 04/21] .gitignore: add .gcov files Alex Bennée
2018-06-29 20:52 ` [Qemu-devel] [PATCH v2 05/21] docker: add gcovr to travis image Alex Bennée
2018-06-29 20:52 ` [Qemu-devel] [PATCH v2 06/21] travis: add gcovr summary for GCOV build Alex Bennée
2018-06-29 20:52 ` [Qemu-devel] [PATCH v2 07/21] build-system: add clean-coverage target Alex Bennée
2018-06-29 20:52 ` [Qemu-devel] [PATCH v2 08/21] build-system: add coverage-report target Alex Bennée
2018-06-29 20:52 ` [Qemu-devel] [PATCH v2 09/21] linux-user: introduce preexit_cleanup Alex Bennée
2018-06-29 20:52 ` [Qemu-devel] [PATCH v2 10/21] linux-user: add gcov support to preexit_cleanup Alex Bennée
2018-06-29 20:52 ` Alex Bennée [this message]
2018-06-29 20:52 ` [Qemu-devel] [PATCH v2 12/21] docker: ubuntu: Update the package list before installing new ones Alex Bennée
2018-06-29 20:52 ` [Qemu-devel] [PATCH v2 13/21] docker: ubuntu: Use SDL2 Alex Bennée
2018-06-29 20:52 ` [Qemu-devel] [PATCH v2 14/21] docker: Clean the MXE base image Alex Bennée
2018-06-29 20:52 ` [Qemu-devel] [PATCH v2 15/21] docker: Do not run tests in 'intermediate' images Alex Bennée
2018-06-29 20:52 ` [Qemu-devel] [PATCH v2 16/21] docker: add env parser to docker.py build step Alex Bennée
2018-07-02 13:28   ` Alex Bennée
2018-06-29 20:52 ` [Qemu-devel] [PATCH v2 17/21] docker: drop QEMU build-dep from bootstrap Alex Bennée
2018-06-29 20:52 ` [Qemu-devel] [PATCH v2 18/21] docker: add special handling for FROM:debian-%-user targets Alex Bennée
2018-06-29 20:52 ` [Qemu-devel] [PATCH v2 19/21] docker: add special rule for deboostrapped images Alex Bennée
2018-06-29 20:52 ` [Qemu-devel] [PATCH v2 20/21] docker: add linux-user powered cross builder for QEMU Alex Bennée
2018-06-29 20:52 ` [Qemu-devel] [PATCH v2 21/21] .shippable.yml: add linux-user cross-build for ppc-softmmu Alex Bennée
2018-07-01 21:26   ` Alex Bennée
2018-07-02  1:53 ` [Qemu-devel] [PATCH v2 00/21] Travis, Code Coverage and Cross Build updates no-reply

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20180629205232.27190-12-alex.bennee@linaro.org \
    --to=alex.bennee@linaro.org \
    --cc=agraf@suse.de \
    --cc=aurelien@aurel32.net \
    --cc=balrogg@gmail.com \
    --cc=berrange@redhat.com \
    --cc=cota@braap.org \
    --cc=f4bug@amsat.org \
    --cc=famz@redhat.com \
    --cc=pbonzini@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=richard.henderson@linaro.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).