]> Git Repo - qemu.git/commitdiff
tests/docker: add more images to PARTIAL_IMAGES when not on x86_64
authorAlex Bennée <[email protected]>
Thu, 15 Aug 2019 19:40:48 +0000 (19:40 +0000)
committerAlex Bennée <[email protected]>
Tue, 10 Sep 2019 13:14:31 +0000 (14:14 +0100)
This prevents us trying to do builds which we can't complete.

Signed-off-by: Alex Bennée <[email protected]>
tests/docker/Makefile.include

index 7df8dbe1a17aaafe292dce56f26b904091b996b4..50a400b573aefea05556589f54fd26c68184469c 100644 (file)
@@ -106,6 +106,15 @@ docker-image-debian-s390x-cross: docker-image-debian9
 docker-image-debian-win32-cross: docker-image-debian9-mxe
 docker-image-debian-win64-cross: docker-image-debian9-mxe
 
+# For non-x86 hosts not all cross-compilers have been packaged
+ifneq ($(ARCH),x86_64)
+DOCKER_PARTIAL_IMAGES += debian-mips-cross debian-mipsel-cross debian-mips64el-cross
+DOCKER_PARTIAL_IMAGES += debian-ppc64el-cross
+DOCKER_PARTIAL_IMAGES += debian-s390x-cross
+DOCKER_PARTIAL_IMAGES += debian-win32-cross debian-win64-cross
+DOCKER_PARTIAL_IMAGES += fedora travis
+endif
+
 docker-image-debian-alpha-cross: docker-image-debian10
 docker-image-debian-arm64-cross: docker-image-debian10
 docker-image-debian-hppa-cross: docker-image-debian10
This page took 0.037524 seconds and 4 git commands to generate.