Open cakebaker opened 2 weeks ago
All modified and coverable lines are covered by tests :white_check_mark:
Project coverage is 87.45%. Comparing base (
50b7ec6
) to head (bca84ba
).
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
grcov also supports -Cinstrument-coverage what was wrong with this?
they use it upstream https://github.com/mozilla/grcov/blob/9cc638baf2cca4368b9f8354e78c1ae28dc2d168/.github/workflows/CICD.yml#L84-L98
Yes, I know that grcov
supports -Cinstrument-coverage
, I used it in the other projects ;-) In this project it interfered with the tests, though. I will try again with the example you provided.
I know upstream ( @marco-c ) very well ;) I am sure he will be happy to help
This PR is an attempt to fix the "code coverage" job by using
-Cinstrument-coverage
instead of-Zprofile
which has been removed from Rust nightly: https://github.com/rust-lang/rust/pull/131829 . For this purpose,cargo-llvm-cov
is used instead ofgrcov
.