Skip to content

Commit

Permalink
Allow actions-rs/grcov to fail
Browse files Browse the repository at this point in the history
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
  • Loading branch information
atodorov committed Mar 6, 2024
1 parent 908bd19 commit fb2a9a4
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit fb2a9a4

Please sign in to comment.