This pull request includes:
- further collapse of the build matrix - enabling MacOSX in the build - make -j3 change Other pending updates are deferred for later in the cycle. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQEcBAABAgAGBQJXA4E9AAoJEPvQ2wlanipEH/EH+gNQRBmyHdnFGM5QwifRMP1+ UzQiciGP5TNE3Mk07Zsbl8mdyuHL+5+8NryzDB7j1Qxbveea/xV8gaOIpabntBjM QQdNBGKJoYIj9HHm7oKlglS2lvwar+NK0/adHPL5PLR/FrLbC2BXAQwz46m4G8FO vWRWzWJBwCVGrEgDf8Ih5RsmLEJeCkvd0C4SiikFROS7nxQt0V4YEqHAPMWUisIA 4EzsFSqRHpMVkCzaPYgyUganEdpkB6DnuBl8CgHGWBYp4BaqyD9EfzIHTLRRy07v 2dTDIxOB2uNgNUSU/vUYuQlrjmB05wg4K0/PYpbk6h2WvxJ2p0NpXPyWmszQN1s= =v/pD -----END PGP SIGNATURE----- Merge remote-tracking branch 'remotes/stsquad/tags/travis-pull-05042016' into staging This pull request includes: - further collapse of the build matrix - enabling MacOSX in the build - make -j3 change Other pending updates are deferred for later in the cycle. # gpg: Signature made Tue 05 Apr 2016 10:11:25 BST using RSA key ID 5A9E2A44 # gpg: Good signature from "Alex Bennée (Master Work Key) <alex.bennee@linaro.org>" * remotes/stsquad/tags/travis-pull-05042016: .travis.yml: make -j3 .travis.yml: enable OSX builds .travis.yml: collapse the test matrix Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
commit
972e3ca3c1
82
.travis.yml
82
.travis.yml
@ -42,83 +42,49 @@ notifications:
|
|||||||
env:
|
env:
|
||||||
global:
|
global:
|
||||||
- TEST_CMD="make check"
|
- TEST_CMD="make check"
|
||||||
- EXTRA_CONFIG=""
|
|
||||||
matrix:
|
matrix:
|
||||||
# Group major targets together with their linux-user counterparts
|
- CONFIG=""
|
||||||
- TARGETS=alpha-softmmu,alpha-linux-user,cris-softmmu,cris-linux-user,m68k-softmmu,m68k-linux-user,microblaze-softmmu,microblazeel-softmmu,microblaze-linux-user,microblazeel-linux-user
|
- CONFIG="--enable-debug --enable-debug-tcg --enable-trace-backends=log"
|
||||||
- TARGETS=arm-softmmu,arm-linux-user,armeb-linux-user,aarch64-softmmu,aarch64-linux-user
|
- CONFIG="--disable-linux-aio --disable-cap-ng --disable-attr --disable-brlapi --disable-uuid --disable-libusb"
|
||||||
- TARGETS=i386-softmmu,i386-linux-user,x86_64-softmmu,x86_64-linux-user
|
- CONFIG="--enable-modules"
|
||||||
- TARGETS=mips-softmmu,mips64-softmmu,mips64el-softmmu,mipsel-softmmu,mips-linux-user,mips64-linux-user,mips64el-linux-user,mipsel-linux-user,mipsn32-linux-user,mipsn32el-linux-user
|
- CONFIG="--with-coroutine=ucontext"
|
||||||
- TARGETS=or32-softmmu,or32-linux-user,ppc-softmmu,ppc64-softmmu,ppcemb-softmmu,ppc-linux-user,ppc64-linux-user,ppc64abi32-linux-user,ppc64le-linux-user
|
- CONFIG="--with-coroutine=sigaltstack"
|
||||||
- TARGETS=s390x-softmmu,s390x-linux-user,sh4-softmmu,sh4eb-softmmu,sh4-linux-user,sh4eb-linux-user,sparc-softmmu,sparc64-softmmu,sparc-linux-user,sparc32plus-linux-user,sparc64-linux-user,unicore32-softmmu,unicore32-linux-user
|
|
||||||
# Group remaining softmmu only targets into one build
|
|
||||||
- TARGETS=lm32-softmmu,moxie-softmmu,tricore-softmmu,xtensa-softmmu,xtensaeb-softmmu
|
|
||||||
git:
|
git:
|
||||||
# we want to do this ourselves
|
# we want to do this ourselves
|
||||||
submodules: false
|
submodules: false
|
||||||
before_install:
|
before_install:
|
||||||
|
- if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew update ; fi
|
||||||
|
- if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew install libffi gettext glib pixman ; fi
|
||||||
- wget -O - http://people.linaro.org/~alex.bennee/qemu-submodule-git-seed.tar.xz | tar -xvJ
|
- wget -O - http://people.linaro.org/~alex.bennee/qemu-submodule-git-seed.tar.xz | tar -xvJ
|
||||||
- git submodule update --init --recursive
|
- git submodule update --init --recursive
|
||||||
before_script:
|
before_script:
|
||||||
- ./configure --target-list=${TARGETS} --enable-debug-tcg ${EXTRA_CONFIG}
|
- ./configure ${CONFIG}
|
||||||
script:
|
script:
|
||||||
- make -j2 && ${TEST_CMD}
|
- make -j3 && ${TEST_CMD}
|
||||||
matrix:
|
matrix:
|
||||||
# We manually include a number of additional build for non-standard bits
|
|
||||||
include:
|
include:
|
||||||
# Debug related options
|
# Sparse is GCC only
|
||||||
- env: TARGETS=x86_64-softmmu
|
- env: CONFIG="--enable-sparse"
|
||||||
EXTRA_CONFIG="--enable-debug"
|
|
||||||
compiler: gcc
|
compiler: gcc
|
||||||
# We currently disable "make check"
|
# gprof/gcov are GCC features
|
||||||
- env: TARGETS=alpha-softmmu
|
- env: CONFIG="--enable-gprof --enable-gcov --disable-pie"
|
||||||
EXTRA_CONFIG="--enable-debug --enable-tcg-interpreter"
|
compiler: gcc
|
||||||
|
# We manually include builds which we disable "make check" for
|
||||||
|
- env: CONFIG="--enable-debug --enable-tcg-interpreter"
|
||||||
TEST_CMD=""
|
TEST_CMD=""
|
||||||
compiler: gcc
|
compiler: gcc
|
||||||
# Disable a few of the optional features
|
- env: CONFIG="--enable-trace-backends=simple"
|
||||||
- env: TARGETS=x86_64-softmmu
|
|
||||||
EXTRA_CONFIG="--disable-linux-aio --disable-cap-ng --disable-attr --disable-brlapi --disable-uuid --disable-libusb"
|
|
||||||
compiler: gcc
|
|
||||||
# Currently configure doesn't force --disable-pie
|
|
||||||
- env: TARGETS=x86_64-softmmu
|
|
||||||
EXTRA_CONFIG="--enable-gprof --enable-gcov --disable-pie"
|
|
||||||
compiler: gcc
|
|
||||||
# Sparse
|
|
||||||
- env: TARGETS=x86_64-softmmu
|
|
||||||
EXTRA_CONFIG="--enable-sparse"
|
|
||||||
compiler: gcc
|
|
||||||
# Modules
|
|
||||||
- env: TARGETS=arm-softmmu,x86_64-softmmu
|
|
||||||
EXTRA_CONFIG="--enable-modules"
|
|
||||||
compiler: gcc
|
|
||||||
# All the trace backends (apart from dtrace)
|
|
||||||
- env: TARGETS=i386-softmmu
|
|
||||||
EXTRA_CONFIG="--enable-trace-backends=log"
|
|
||||||
compiler: gcc
|
|
||||||
# We currently disable "make check" (until 41fc57e44ed regression fixed)
|
|
||||||
- env: TARGETS=x86_64-softmmu
|
|
||||||
EXTRA_CONFIG="--enable-trace-backends=simple"
|
|
||||||
TEST_CMD=""
|
TEST_CMD=""
|
||||||
compiler: gcc
|
compiler: gcc
|
||||||
# We currently disable "make check"
|
- env: CONFIG="--enable-trace-backends=ftrace"
|
||||||
- env: TARGETS=x86_64-softmmu
|
|
||||||
EXTRA_CONFIG="--enable-trace-backends=ftrace"
|
|
||||||
TEST_CMD=""
|
TEST_CMD=""
|
||||||
compiler: gcc
|
compiler: gcc
|
||||||
# We currently disable "make check"
|
- env: CONFIG="--enable-trace-backends=ust"
|
||||||
- env: TARGETS=x86_64-softmmu
|
|
||||||
EXTRA_CONFIG="--enable-trace-backends=ust"
|
|
||||||
TEST_CMD=""
|
TEST_CMD=""
|
||||||
compiler: gcc
|
compiler: gcc
|
||||||
# All the co-routine backends (apart from windows)
|
- env: CONFIG="--with-coroutine=gthread"
|
||||||
# We currently disable "make check"
|
|
||||||
- env: TARGETS=x86_64-softmmu
|
|
||||||
EXTRA_CONFIG="--with-coroutine=gthread"
|
|
||||||
TEST_CMD=""
|
TEST_CMD=""
|
||||||
compiler: gcc
|
compiler: gcc
|
||||||
- env: TARGETS=x86_64-softmmu
|
- env: CONFIG=""
|
||||||
EXTRA_CONFIG="--with-coroutine=ucontext"
|
os: osx
|
||||||
compiler: gcc
|
compiler: clang
|
||||||
- env: TARGETS=x86_64-softmmu
|
|
||||||
EXTRA_CONFIG="--with-coroutine=sigaltstack"
|
|
||||||
compiler: gcc
|
|
||||||
|
Loading…
Reference in New Issue
Block a user