-
Notifications
You must be signed in to change notification settings - Fork 40
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ci: use -Cinstrument-coverage
instead of -Zprofile
#470
base: main
Are you sure you want to change the base?
Conversation
4dd8145
to
c4c14e1
Compare
c4c14e1
to
82fd8e9
Compare
0eb54a7
to
9dcb6a6
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #470 +/- ##
===========================================
+ Coverage 66.89% 87.45% +20.55%
===========================================
Files 36 31 -5
Lines 4438 6697 +2259
Branches 984 299 -685
===========================================
+ Hits 2969 5857 +2888
+ Misses 1059 628 -431
+ Partials 410 212 -198 ☔ View full report in Codecov by Sentry. |
dedd391
to
fc823e6
Compare
and use cargo-llvm-cov instead of grcov. Support for -Zprofile has been removed from Rust nightly: rust-lang/rust#131829
fc823e6
to
bca84ba
Compare
grcov also supports -Cinstrument-coverage they use it upstream |
Yes, I know that |
I know upstream ( @marco-c ) very well ;) |
27e7f63
to
f2ca2a9
Compare
b61da49
to
b170cc7
Compare
b170cc7
to
18dc8b2
Compare
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: rust-lang/rust#131829 . For this purpose,cargo-llvm-cov
is used instead ofgrcov
.