Skip to content

Commit

Permalink
ci: remove -Zprofile
Browse files Browse the repository at this point in the history
It has been removed upstream in rust-lang/rust#131829
  • Loading branch information
cakebaker committed Nov 3, 2024
1 parent 07807c7 commit d4503a6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,9 @@ jobs:
run: |
if [ "$RUNNER_OS" == "Windows" ]; then
# -Clink-dead-code conflicts with sysinfo crate and leads to STATUS_DLL_NOT_FOUND error, so we don't use it on Windows
echo "RUSTFLAGS=-Zprofile -Ccodegen-units=1 -Copt-level=0 -Coverflow-checks=off -Zpanic_abort_tests -Cpanic=abort" >> $GITHUB_ENV
echo "RUSTFLAGS=-Ccodegen-units=1 -Copt-level=0 -Coverflow-checks=off -Zpanic_abort_tests -Cpanic=abort" >> $GITHUB_ENV
else
echo "RUSTFLAGS=-Zprofile -Ccodegen-units=1 -Copt-level=0 -Clink-dead-code -Coverflow-checks=off -Zpanic_abort_tests -Cpanic=abort" >> $GITHUB_ENV
echo "RUSTFLAGS=-Ccodegen-units=1 -Copt-level=0 -Clink-dead-code -Coverflow-checks=off -Zpanic_abort_tests -Cpanic=abort" >> $GITHUB_ENV
fi
- name: Test
run: cargo test --no-fail-fast
Expand Down

0 comments on commit d4503a6

Please sign in to comment.