From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:49849) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1btzjP-0001cd-Ua for qemu-devel@nongnu.org; Tue, 11 Oct 2016 12:16:44 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1btzjN-0001we-Ps for qemu-devel@nongnu.org; Tue, 11 Oct 2016 12:16:42 -0400 Received: from mail-lf0-x22e.google.com ([2a00:1450:4010:c07::22e]:34078) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1btzjN-0001wV-HO for qemu-devel@nongnu.org; Tue, 11 Oct 2016 12:16:41 -0400 Received: by mail-lf0-x22e.google.com with SMTP id b81so47807384lfe.1 for ; Tue, 11 Oct 2016 09:16:41 -0700 (PDT) From: =?UTF-8?q?Alex=20Benn=C3=A9e?= Date: Tue, 11 Oct 2016 17:16:21 +0100 Message-Id: <20161011161625.9070-2-alex.bennee@linaro.org> In-Reply-To: <20161011161625.9070-1-alex.bennee@linaro.org> References: <20161011161625.9070-1-alex.bennee@linaro.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [Qemu-devel] [PATCH v3 1/5] tests/docker: add travis dockerfile 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?= This target grabs the latest Travis containers from their repository at quay.io and then installs QEMU's build dependencies. With this it is possible to run on broadly the same setup as they have on travis-ci.org. Signed-off-by: Alex Bennée --- tests/docker/dockerfiles/travis.docker | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 tests/docker/dockerfiles/travis.docker diff --git a/tests/docker/dockerfiles/travis.docker b/tests/docker/dockerfiles/travis.docker new file mode 100644 index 0000000..e4983ae --- /dev/null +++ b/tests/docker/dockerfiles/travis.docker @@ -0,0 +1,6 @@ +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 +ENV FEATURES pyyaml -- 2.9.3