Skip to content

Commit

Permalink
ci: remove profile option remove from nightly
Browse files Browse the repository at this point in the history
The profile option was removed from Rust nightly, so we need to remove
it from the CI. Unfortuanlly, currently `grcov`, tool used on the test
coverage, still doesn't support this change.

Refs: mozilla/grcov#1240
  • Loading branch information
henrybarreto authored and otavio committed Nov 27, 2024
1 parent 44613d1 commit 4d5ec73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ jobs:
args: --locked --all --all-features --no-fail-fast -- --nocapture
env:
CARGO_INCREMENTAL: '0'
RUSTFLAGS: '-Zprofile -Zpanic_abort_tests -Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off -Cpanic=abort'
RUSTFLAGS: '-Ccodegen-units=1 -Copt-level=0 -Clink-dead-code -Coverflow-checks=off -Zpanic_abort_tests -Cpanic=abort'
- id: coverage
if: matrix.name == 'nightly'
uses: actions-rs/grcov@master
Expand Down

0 comments on commit 4d5ec73

Please sign in to comment.