diff options
author | Alex Bennée | 2018-02-07 16:19:25 +0100 |
---|---|---|
committer | Alex Bennée | 2018-02-09 15:09:24 +0100 |
commit | 04200a1674bfc20784f1fc105cbc22bd9be779e8 (patch) | |
tree | acfd50c82953a8ead3fc1ff4991925ba8e567656 | |
parent | Merge remote-tracking branch 'remotes/rth/tags/pull-tcg-20180208' into staging (diff) | |
download | qemu-04200a1674bfc20784f1fc105cbc22bd9be779e8.tar.gz qemu-04200a1674bfc20784f1fc105cbc22bd9be779e8.tar.xz qemu-04200a1674bfc20784f1fc105cbc22bd9be779e8.zip |
.travis.yml: add --disable-linux-user for some jobs
The modules and co-routine builds are only really relevant to softmmu
builds and regularly timeout on Travis. Let's disable linux-user
builds here for more headroom.
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Daniel P. Berrange <berrange@redhat.com>
-rw-r--r-- | .travis.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index 01a57399b5..0dd5020552 100644 --- a/.travis.yml +++ b/.travis.yml @@ -52,9 +52,9 @@ env: - CONFIG="" - CONFIG="--enable-debug --enable-debug-tcg --enable-trace-backends=log" - CONFIG="--disable-linux-aio --disable-cap-ng --disable-attr --disable-brlapi --disable-uuid --disable-libusb" - - CONFIG="--enable-modules" - - CONFIG="--with-coroutine=ucontext" - - CONFIG="--with-coroutine=sigaltstack" + - CONFIG="--enable-modules --disable-linux-user" + - CONFIG="--with-coroutine=ucontext --disable-linux-user" + - CONFIG="--with-coroutine=sigaltstack --disable-linux-user" git: # we want to do this ourselves submodules: false |