diff options
author | Alex Bennée <alex.bennee@linaro.org> | 2017-07-17 21:31:31 -0300 |
---|---|---|
committer | Alex Bennée <alex.bennee@linaro.org> | 2017-07-18 10:54:13 +0100 |
commit | dca34e8c4e8cffb112a8cdc8c1ddd9dc93d1ffcc (patch) | |
tree | 21208bb192614a949ba5e3e0b8395f24edddb513 /tests/docker | |
parent | f4089dc8da4e7135600093c6afac8c83fb7057a1 (diff) | |
download | qemu-dca34e8c4e8cffb112a8cdc8c1ddd9dc93d1ffcc.zip qemu-dca34e8c4e8cffb112a8cdc8c1ddd9dc93d1ffcc.tar.gz qemu-dca34e8c4e8cffb112a8cdc8c1ddd9dc93d1ffcc.tar.bz2 |
docker: include python-yaml in travis.docker
Although the upstream Travis images don't need this library our
"travis-lite" scripts are written in python. This allows us to do:
make docker-travis@travis J=10
and approximate a travis run on their default image.
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Fam Zheng <famz@redhat.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Diffstat (limited to 'tests/docker')
-rw-r--r-- | tests/docker/dockerfiles/travis.docker | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/docker/dockerfiles/travis.docker b/tests/docker/dockerfiles/travis.docker index e4983ae..a315f66 100644 --- a/tests/docker/dockerfiles/travis.docker +++ b/tests/docker/dockerfiles/travis.docker @@ -2,5 +2,5 @@ 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 +RUN apt-get -y install python2.7 python-yaml dh-autoreconf ENV FEATURES pyyaml |