From 8a1be63b3a82e1276f40070b0bce4b650e677fec Mon Sep 17 00:00:00 2001 From: Thane Thomson Date: Mon, 7 Mar 2022 09:12:18 -0500 Subject: [PATCH] ci: Bump grcov version to 0.8.7 (#1099) Signed-off-by: Thane Thomson --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ed3552d40..584a1135a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -162,7 +162,7 @@ jobs: - name: Install grcov run: | rustup component add llvm-tools-preview - curl -L https://github.com/mozilla/grcov/releases/download/v0.8.2/grcov-linux-x86_64.tar.bz2 | tar jxf - + curl -L https://github.com/mozilla/grcov/releases/download/v0.8.7/grcov-x86_64-unknown-linux-gnu.tar.bz2 | tar jxf - - name: Run grcov run: | ./grcov . --source-dir . --binary-path ./target/debug/ --output-type lcov --output-path ./lcov.info --branch --ignore-not-existing