From 3fe301c95b063e177d883acd0faff585aa1bf948 Mon Sep 17 00:00:00 2001 From: Alex Todorov Date: Fri, 1 Mar 2024 15:56:17 +0200 Subject: [PATCH] Allow actions-rs/grcov to fail because recently it started failing with: Error: failed to compile `grcov v0.8.19`, intermediate artifacts can be found at `/var/folders/h1/8hndypj13nsbj5pn4xsnv1tm0000gn/T/cargo-installyBLQUt` Caused by: package `clap_lex v0.7.0` cannot be built because it requires rustc 1.74 or newer, while the currently active rustc version is 1.72.0-nightly Try re-running cargo install with `--locked` and this actions doesn't allow control over how `cargo install` is executed internally --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f07c1fd745..23d92ae0cc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -294,7 +294,9 @@ jobs: CARGO_INCREMENTAL: ${{ env.CARGO_INCREMENTAL }} RUSTFLAGS: ${{ env.RUSTFLAGS }} RUSTDOCFLAGS: ${{ env.RUSTDOCFLAGS }} + - id: coverage + continue-on-error: true uses: actions-rs/grcov@v0.1 with: config: .grcov.yml