Install kcov to CI environment

This commit is contained in:
Greg Fitzgerald 2018-09-28 10:15:19 -06:00
parent 36b18e4fb5
commit 485ba093b3
1 changed files with 9 additions and 0 deletions

View File

@ -19,6 +19,15 @@ RUN set -x && \
&& \
rustup component add rustfmt-preview && \
rustup component add clippy-preview && \
apt install -y \
binutils-dev \
libcurl4-openssl-dev \
zlib1g-dev \
libdw-dev \
libiberty-dev \
&& \
cargo install cargo-kcov && \
cargo kcov --print-install-kcov-sh | VERBOSE=1 bash && \
rm -rf /var/lib/apt/lists/* && \
rustc --version && \
cargo --version