From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:46836) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XXaJL-0004wY-Nc for qemu-devel@nongnu.org; Fri, 26 Sep 2014 14:32:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XXaJH-0002lz-HU for qemu-devel@nongnu.org; Fri, 26 Sep 2014 14:32:07 -0400 From: =?UTF-8?q?Alex=20Benn=C3=A9e?= Date: Fri, 26 Sep 2014 19:31:37 +0100 Message-Id: <1411756299-15428-3-git-send-email-alex.bennee@linaro.org> In-Reply-To: <1411756299-15428-1-git-send-email-alex.bennee@linaro.org> References: <1411756299-15428-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 2/4] .travis.yml: make the make slightly more parallel List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-trivial@nongnu.org Cc: iggy@theiggy.com, peter.maydell@linaro.org, =?UTF-8?q?Alex=20Benn=C3=A9e?= , qemu-devel@nongnu.org, agraf@suse.de The Travis VMs have 1.5 cores so we might as well make some use of the paralellism. Signed-off-by: Alex Bennée Reviewed-by: Alexander Graf Reviewed-by: Brian Jackson --- v3 - fix escaping of ${TEST_CMD} diff --git a/.travis.yml b/.travis.yml index 72cfc9f..57cb95e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -41,7 +41,10 @@ before_install: - git submodule update --init --recursive - sudo apt-get update -qq - sudo apt-get install -qq ${CORE_PKGS} ${NET_PKGS} ${GUI_PKGS} ${EXTRA_PKGS} -script: "./configure --target-list=${TARGETS} ${EXTRA_CONFIG} && make && ${TEST_CMD}" +before_script: + - ./configure --target-list=${TARGETS} --enable-debug-tcg ${EXTRA_CONFIG} +script: + - make -j2 && ${TEST_CMD} matrix: # We manually include a number of additional build for non-standard bits include: -- 2.1.0