From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:35112) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WGVgd-0008N0-Ks for qemu-devel@nongnu.org; Thu, 20 Feb 2014 10:37:24 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WGVgY-0005WR-H3 for qemu-devel@nongnu.org; Thu, 20 Feb 2014 10:37:19 -0500 Received: from static.88-198-71-155.clients.your-server.de ([88.198.71.155]:38460 helo=socrates.bennee.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WGVgY-0005Vy-1A for qemu-devel@nongnu.org; Thu, 20 Feb 2014 10:37:14 -0500 Received: from localhost ([127.0.0.1] helo=zen.linaro.local) by socrates.bennee.com with esmtp (Exim 4.80) (envelope-from ) id 1WGVgX-0005L9-A5 for qemu-devel@nongnu.org; Thu, 20 Feb 2014 16:37:13 +0100 From: alex.bennee@linaro.org Date: Thu, 20 Feb 2014 15:37:13 +0000 Message-Id: <1392910636-17338-2-git-send-email-alex.bennee@linaro.org> In-Reply-To: <1392910636-17338-1-git-send-email-alex.bennee@linaro.org> References: <1392910636-17338-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 v1 1/4] .travis.yml: add a new build target with non-core devlibs List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org From: Alex Bennée The current builds don't include all the features which are auto-detected and then disabled when the appropriate test packages don't exist. I've added another target that enables all known additional packages for increased coverage. I didn't add it to the core package list to reduce build time. Signed-off-by: Alex Bennée diff --git a/.travis.yml b/.travis.yml index c7ff4da..286cf62 100644 --- a/.travis.yml +++ b/.travis.yml @@ -46,6 +46,10 @@ matrix: - env: TARGETS=i386-softmmu,x86_64-softmmu EXTRA_CONFIG="--enable-debug --enable-tcg-interpreter" compiler: gcc + # All the extra -dev packages + - env: TARGETS=i386-softmmu,x86_64-softmmu + EXTRA_PKGS="libaio-dev libcap-ng-dev libattr1-dev libbrlapi-dev uuid-dev libusb-1.0.0-dev" + compiler: gcc # Currently configure doesn't force --disable-pie - env: TARGETS=i386-softmmu,x86_64-softmmu EXTRA_CONFIG="--enable-gprof --enable-gcov --disable-pie" -- 1.9.0