From 1b9c0482d13b9bc3fa54c4c56e79fb8140484804 Mon Sep 17 00:00:00 2001 From: Guillaume Desmottes Date: Thu, 15 Apr 2021 16:20:54 +0200 Subject: [PATCH] ci: uses grcov 0.6.1 Newer versions suffer a regression breaking the job. --- ci/images_template.yml | 2 +- ci/install-rust.sh | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/ci/images_template.yml b/ci/images_template.yml index 8fcc103d0..4ec7d1368 100644 --- a/ci/images_template.yml +++ b/ci/images_template.yml @@ -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' diff --git a/ci/install-rust.sh b/ci/install-rust.sh index 29b1ac370..6ff6cb2d5 100755 --- a/ci/install-rust.sh +++ b/ci/install-rust.sh @@ -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