Skip to content

Commit

Permalink
build: Adds lcov to Ubuntu 17.10 and 18.04 Docker environments.
Browse files Browse the repository at this point in the history
  • Loading branch information
tgockel committed Mar 2, 2018
1 parent 85f972c commit 2dca378
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 3 additions & 1 deletion config/docker/ubuntu-17.10/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,13 @@ RUN apt-get install --yes software-properties-common
RUN add-apt-repository --yes ppa:ubuntu-toolchain-r/test
RUN apt-get update

RUN apt-get install --yes \
RUN apt-get update \
&& apt-get install --yes \
cmake \
grep \
g++-7 \
ivy \
lcov \
libgtest-dev \
libzookeeper-mt-dev \
ninja-build
Expand Down
5 changes: 3 additions & 2 deletions config/docker/ubuntu-18.04/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
FROM ubuntu:18.04
MAINTAINER Travis Gockel <[email protected]>

RUN apt-get update
RUN apt-get install --yes \
RUN apt-get update \
&& apt-get install --yes \
cmake \
grep \
g++-7 \
ninja-build \
ivy \
lcov \
libgtest-dev \
libzookeeper-mt-dev

Expand Down

0 comments on commit 2dca378

Please sign in to comment.