Skip to content

Commit e26f56b

Browse files
committed
ci: Fix coverage workflow
Due to a regression (?) in the rustc compiler, the code coverage workflow has been failing since 2025-05-20. Temporarily use a version of nightly that is known to work, until rust-lang/rust#141577 (or whatever replaces it) is resolved.
1 parent 0450a47 commit e26f56b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/coverage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
uses: actions/checkout@v4
1818

1919
- name: Install toolchain
20-
uses: dtolnay/rust-toolchain@nightly
20+
uses: dtolnay/rust-toolchain@nightly-2025-05-18 # date is temporary – see issue #600
2121
with:
2222
components: llvm-tools-preview
2323

@@ -32,7 +32,7 @@ jobs:
3232
# at all, documentation tests are skipped.
3333
- name: Collect coverage data (skip doctests & benchmarks)
3434
run: >
35-
cargo +nightly llvm-cov nextest
35+
cargo llvm-cov nextest
3636
--lib --bins --tests --examples
3737
--lcov --output-path lcov.info
3838
--

0 commit comments

Comments
 (0)