From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:52609) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ek9ST-0000M2-VO for qemu-devel@nongnu.org; Fri, 09 Feb 2018 09:15:26 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ek9SP-0007t0-L5 for qemu-devel@nongnu.org; Fri, 09 Feb 2018 09:15:21 -0500 Received: from mail-wr0-x241.google.com ([2a00:1450:400c:c0c::241]:46708) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ek9SP-0007qp-ED for qemu-devel@nongnu.org; Fri, 09 Feb 2018 09:15:17 -0500 Received: by mail-wr0-x241.google.com with SMTP id 111so5506216wrb.13 for ; Fri, 09 Feb 2018 06:15:17 -0800 (PST) From: =?UTF-8?q?Alex=20Benn=C3=A9e?= Date: Fri, 9 Feb 2018 14:15:14 +0000 Message-Id: <20180209141514.18840-2-alex.bennee@linaro.org> In-Reply-To: <20180209141514.18840-1-alex.bennee@linaro.org> References: <20180209141514.18840-1-alex.bennee@linaro.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [Qemu-devel] [PULL 1/1] .travis.yml: add --disable-linux-user for some jobs List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: peter.maydell@linaro.org Cc: qemu-devel@nongnu.org, =?UTF-8?q?Alex=20Benn=C3=A9e?= , Fam Zheng , =?UTF-8?q?Philippe=20Mathieu-Daud=C3=A9?= 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 Reviewed-by: Philippe Mathieu-Daudé Reviewed-by: Daniel P. Berrange 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 -- 2.15.1