From 485ba093b36989c9707a14a9053c628e072d54f2 Mon Sep 17 00:00:00 2001 From: Greg Fitzgerald Date: Fri, 28 Sep 2018 10:15:19 -0600 Subject: [PATCH] Install kcov to CI environment --- ci/docker-rust/Dockerfile | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/ci/docker-rust/Dockerfile b/ci/docker-rust/Dockerfile index 54018530fc..422af58036 100644 --- a/ci/docker-rust/Dockerfile +++ b/ci/docker-rust/Dockerfile @@ -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