From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:51645) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1c0A6H-0004kK-P5 for qemu-devel@nongnu.org; Fri, 28 Oct 2016 12:33:51 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1c0A6F-0003H3-Pw for qemu-devel@nongnu.org; Fri, 28 Oct 2016 12:33:49 -0400 Received: from mail-wm0-x22f.google.com ([2a00:1450:400c:c09::22f]:38206) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1c0A6F-0003GV-Ir for qemu-devel@nongnu.org; Fri, 28 Oct 2016 12:33:47 -0400 Received: by mail-wm0-x22f.google.com with SMTP id n67so125563727wme.1 for ; Fri, 28 Oct 2016 09:33:47 -0700 (PDT) From: =?UTF-8?q?Alex=20Benn=C3=A9e?= Date: Fri, 28 Oct 2016 17:33:36 +0100 Message-Id: <20161028163339.31096-4-alex.bennee@linaro.org> In-Reply-To: <20161028163339.31096-1-alex.bennee@linaro.org> References: <20161028163339.31096-1-alex.bennee@linaro.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [Qemu-devel] [PATCH 3/6] tests/docker: add optional libs to travis.docker List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: famz@redhat.com Cc: qemu-devel@nongnu.org, =?UTF-8?q?Alex=20Benn=C3=A9e?= In our .travis.yml we install a bunch of extra libraries which are not part of the packaged QEMU's builddeps. We include them here to make our docker container more closely match the state of the system after docker has installed the rest of the build dependencies. Signed-off-by: Alex Bennée --- tests/docker/dockerfiles/travis.docker | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/tests/docker/dockerfiles/travis.docker b/tests/docker/dockerfiles/travis.docker index e4983ae..6bef722 100644 --- a/tests/docker/dockerfiles/travis.docker +++ b/tests/docker/dockerfiles/travis.docker @@ -2,5 +2,12 @@ FROM quay.io/travisci/travis-ruby RUN apt-get update RUN apt-get -y build-dep qemu RUN apt-get -y build-dep device-tree-compiler -RUN apt-get -y install python2.7 dh-autoreconf +# Additional optional libs not in QEMU's builddep +RUN apt-get -y install libbrlapi-dev liblttng-ust-dev libcap-ng-dev \ + libnfs-dev libnss3-dev libpixman-1-dev \ + libpng12-dev librados-dev libseccomp-dev \ + libspice-protocol-dev libspice-server-dev \ + libssh2-1-dev liburcu-dev libusb-1.0-0-dev \ + libvte-2.90-dev +RUN apt-get -y install python2.7 dh-autoreconf sparse ENV FEATURES pyyaml -- 2.10.1