From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:55515) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dLtsu-0004Ia-Vy for qemu-devel@nongnu.org; Fri, 16 Jun 2017 12:14:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dLtsq-0002j4-Ff for qemu-devel@nongnu.org; Fri, 16 Jun 2017 12:14:08 -0400 Received: from mail-qt0-x243.google.com ([2607:f8b0:400d:c0d::243]:36024) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dLtsq-0002ix-Ba for qemu-devel@nongnu.org; Fri, 16 Jun 2017 12:14:04 -0400 Received: by mail-qt0-x243.google.com with SMTP id s33so11302899qtg.3 for ; Fri, 16 Jun 2017 09:14:04 -0700 (PDT) Sender: =?UTF-8?Q?Philippe_Mathieu=2DDaud=C3=A9?= From: =?UTF-8?q?Philippe=20Mathieu-Daud=C3=A9?= Date: Fri, 16 Jun 2017 13:13:28 -0300 Message-Id: <20170616161334.7492-6-f4bug@amsat.org> In-Reply-To: <20170616161334.7492-1-f4bug@amsat.org> References: <20170616161334.7492-1-f4bug@amsat.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [Qemu-devel] [PATCH 05/11] travis: build tests objects in parallel, then run tests sequentially List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org, =?UTF-8?q?Alex=20Benn=C3=A9e?= , Fam Zheng , Peter Maydell Cc: =?UTF-8?q?Philippe=20Mathieu-Daud=C3=A9?= tests are run sequentially to avoid mixed results output. Signed-off-by: Philippe Mathieu-Daudé --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index c9ac741afc..dbbb11617d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -66,7 +66,7 @@ before_script: - ./configure ${CONFIG} script: - make -j${PARALLEL_JOBS} - - if [ "${RUN_TESTS}" == "yes" ]; then make check; fi + - if [ "${RUN_TESTS}" == "yes" ]; then make -j${PARALLEL_JOBS} check-compile && make check; fi matrix: include: # Test with CLang for compile portability -- 2.11.0