Skip to content

Commit

Permalink
travis-ci: add yaml-cpp to docker images
Browse files Browse the repository at this point in the history
The upstream fluxrm/testenv docker images no longer have yaml-cpp
dependency, so install that via the travis/Dockerfile.
  • Loading branch information
grondo committed Apr 18, 2019
1 parent 2c36c65 commit 00001bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/docker/travis/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ RUN case $BASE_IMAGE in \
# existing packages)
#
RUN case $BASE_IMAGE in \
bionic*) ;; \
centos*) ;; \
bionic*) apt update && apt install -yy --no-install-recommends libyaml-cpp-dev;; \
centos*) yum -y update && yum -y install yaml-cpp-devel ;; \
*) (>&2 echo "Unknown BASE_IMAGE") ;; \
esac

Expand Down

0 comments on commit 00001bb

Please sign in to comment.