From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:56445) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aOnUB-0003vi-6P for qemu-devel@nongnu.org; Thu, 28 Jan 2016 09:23:51 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aOnUA-00010i-7v for qemu-devel@nongnu.org; Thu, 28 Jan 2016 09:23:47 -0500 Received: from mail-wm0-x22d.google.com ([2a00:1450:400c:c09::22d]:33197) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aOnUA-00010K-0u for qemu-devel@nongnu.org; Thu, 28 Jan 2016 09:23:46 -0500 Received: by mail-wm0-x22d.google.com with SMTP id l66so27538899wml.0 for ; Thu, 28 Jan 2016 06:23:45 -0800 (PST) From: =?UTF-8?q?Alex=20Benn=C3=A9e?= Date: Thu, 28 Jan 2016 14:23:29 +0000 Message-Id: <1453991009-32736-4-git-send-email-alex.bennee@linaro.org> In-Reply-To: <1453991009-32736-1-git-send-email-alex.bennee@linaro.org> References: <1453991009-32736-1-git-send-email-alex.bennee@linaro.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [Qemu-devel] [PATCH v3 3/3] .travis.yml: enable each of the co-routine backends List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: kwolf@redhat.com, qemu-trivial@nongnu.org, stefanha@redhat.com, pbonzini@redhat.com, =?UTF-8?q?Alex=20Benn=C3=A9e?= , david@gibson.dropbear.id.au We disable "make check" for the gthread backend as it is broken. Signed-off-by: Alex Bennée --- .travis.yml | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 16be23f..021eec7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -94,6 +94,10 @@ matrix: - env: TARGETS=i386-softmmu,x86_64-softmmu EXTRA_CONFIG="--enable-sparse" compiler: gcc + # Modules + - env: TARGETS=i386-softmmu,x86_64-softmmu + EXTRA_CONFIG="--enable-modules" + compiler: gcc # All the trace backends (apart from dtrace) - env: TARGETS=i386-softmmu,x86_64-softmmu EXTRA_CONFIG="--enable-trace-backends=stderr" @@ -111,6 +115,15 @@ matrix: EXTRA_CONFIG="--enable-trace-backends=ust" TEST_CMD="" compiler: gcc + # All the co-routine backends (apart from windows) + # We currently disable "make check" - env: TARGETS=i386-softmmu,x86_64-softmmu - EXTRA_CONFIG="--enable-modules" + EXTRA_CONFIG="--with-coroutine=gthread" + TEST_CMD="" + compiler: gcc + - env: TARGETS=i386-softmmu,x86_64-softmmu + EXTRA_CONFIG="--with-coroutine=ucontext" + compiler: gcc + - env: TARGETS=i386-softmmu,x86_64-softmmu + EXTRA_CONFIG="--with-coroutine=sigaltstack" compiler: gcc -- 2.7.0