summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Bennée2018-10-08 12:56:13 +0200
committerAlex Bennée2018-11-14 11:20:23 +0100
commitadcf96830da80664332075e81056cde11dfeb502 (patch)
treecc94876d4e4d7d790f386c6eab6fb5778f94b8ba
parentMerge remote-tracking branch 'remotes/vivier2/tags/linux-user-for-3.1-pull-re... (diff)
downloadqemu-adcf96830da80664332075e81056cde11dfeb502.tar.gz
qemu-adcf96830da80664332075e81056cde11dfeb502.tar.xz
qemu-adcf96830da80664332075e81056cde11dfeb502.zip
.travis.yml: split MacOSX builds and reduce target list
We have reached the point where the MacOSX build was regularly timing out. So as before I've reduced the target list to "major" architectures to try and bring the build time down. I've added an additional MacOSX build with the latest XCode with a minimal list of "most likely" targets on MacOS. Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
-rw-r--r--.travis.yml8
1 files changed, 7 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index aa49c7b114..d472fd650b 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -107,8 +107,14 @@ matrix:
- env: CONFIG="--disable-tcg"
TEST_CMD=""
compiler: gcc
- - env: CONFIG=""
+ # MacOSX builds
+ - env: CONFIG="--target-list=aarch64-softmmu,arm-softmmu,i386-softmmu,mips-softmmu,mips64-softmmu,ppc64-softmmu,riscv64-softmmu,s390x-softmmu,x86_64-softmmu"
os: osx
+ osx_image: xcode9.4
+ compiler: clang
+ - env: CONFIG="--target-list=i386-softmmu,ppc-softmmu,ppc64-softmmu,m68k-softmmu,x86_64-softmmu"
+ os: osx
+ osx_image: xcode10
compiler: clang
# Python builds
- env: CONFIG="--target-list=x86_64-softmmu"