ci: uses grcov 0.6.1

Newer versions suffer a regression breaking the job.
This commit is contained in:
Guillaume Desmottes 2021-04-15 16:20:54 +02:00
parent 99616ec0b4
commit 1b9c0482d1
2 changed files with 3 additions and 2 deletions

View file

@ -1,4 +1,4 @@
variables:
GST_RS_IMG_TAG: '2021-03-27.0'
GST_RS_IMG_TAG: '2021-04-15.0'
GST_RS_STABLE: '1.51.0'
GST_RS_MSRV: '1.51.0'

View file

@ -29,7 +29,8 @@ fi
# coverage tools
if [ "$RUST_VERSION" = "nightly" ]; then
cargo install grcov
# current version is failing because of https://github.com/mozilla/grcov/issues/555
cargo install grcov --version 0.6.1
rustup component add llvm-tools-preview
pip3 install lcov_cobertura
fi