diff options
author | Alex Bennée <alex.bennee@linaro.org> | 2016-10-11 17:16:21 +0100 |
---|---|---|
committer | Fam Zheng <famz@redhat.com> | 2016-10-17 10:05:48 +0800 |
commit | 8b9b3177a2e588db16274b2bf6d390a95e837f80 (patch) | |
tree | 197d15bac602b60b5c196d6ffd29de211dae2e7d /tests/docker | |
parent | 6aa5a3679449cdf0b6fe5a6829b22e642ded57fd (diff) | |
download | qemu-8b9b3177a2e588db16274b2bf6d390a95e837f80.zip qemu-8b9b3177a2e588db16274b2bf6d390a95e837f80.tar.gz qemu-8b9b3177a2e588db16274b2bf6d390a95e837f80.tar.bz2 |
tests/docker: add travis dockerfile
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 <alex.bennee@linaro.org>
Message-Id: <20161011161625.9070-2-alex.bennee@linaro.org>
Signed-off-by: Fam Zheng <famz@redhat.com>
Diffstat (limited to 'tests/docker')
-rw-r--r-- | tests/docker/dockerfiles/travis.docker | 6 |
1 files changed, 6 insertions, 0 deletions
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 |