Uploads two reports to Buildkite, one from cargo-cov and one from lcov via grcov. The lcov one is busted on linux and is what we need to bring codecov.io back up again. It works great on macos if you wanted to generate them locally and prefer lcov HTML reports. * Also comment out non-coverage build to speed things up.
10 lines
216 B
Docker
10 lines
216 B
Docker
FROM solanalabs/rust
|
|
ARG date
|
|
|
|
RUN set -x && \
|
|
rustup install nightly-$date && \
|
|
rustup default nightly-$date && \
|
|
rustc --version && \
|
|
cargo --version && \
|
|
cargo +nightly-$date install cargo-cov
|