Skip to content

Commit

Permalink
Add dependencies for getting code coverage info.
Browse files Browse the repository at this point in the history
  • Loading branch information
francis-starlab committed May 20, 2021
1 parent b41aef4 commit 3009a30
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,9 @@ RUN curl https://sh.rustup.rs -sSf > rustup-install.sh && \
rm rustup-install.sh && \
\
# Install rustfmt / cargo fmt for testing
rustup component add rustfmt clippy
rustup component add rustfmt clippy && \
# Install grcov for code coverage
cargo install grcov

# Build and install qemu
RUN git clone --depth 1 --branch v5.1.0 git://git.qemu-project.org/qemu.git && \
Expand Down Expand Up @@ -84,3 +86,4 @@ ENV LANG=en_US.utf-8

ENTRYPOINT ["/usr/local/bin/startup_script"]
CMD ["/bin/bash", "-l"]

0 comments on commit 3009a30

Please sign in to comment.