-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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: remove -Zprofile
#6842
ci: remove -Zprofile
#6842
Conversation
9ceb57b
to
4993b96
Compare
GNU testsuite comparison:
|
Code coverage tests seem to fail for other reasons, can this PR be merged ? @cakebaker @sylvestre |
I think the code coverage tests fail because of this PR even though they fail with three different errors now :| |
4993b96
to
615b707
Compare
GNU testsuite comparison:
|
615b707
to
eccb5da
Compare
GNU testsuite comparison:
|
eccb5da
to
a5434d8
Compare
GNU testsuite comparison:
|
My bad, I wanted to comment on #6822 , not here 😔 |
.github/workflows/CICD.yml
Outdated
@@ -1014,15 +1014,15 @@ jobs: | |||
run: cargo nextest run --profile ci --hide-progress-bar ${{ steps.vars.outputs.CARGO_FEATURES_OPTION }} -p uucore -p coreutils | |||
env: | |||
RUSTC_WRAPPER: "" | |||
RUSTFLAGS: "-Zprofile -Ccodegen-units=1 -Copt-level=0 -Clink-dead-code -Coverflow-checks=off -Zpanic_abort_tests -Cpanic=abort" | |||
RUSTFLAGS: "-Cprofile-generate=target/debug -Ccodegen-units=1 -Copt-level=0 -Clink-dead-code -Coverflow-checks=off -Zpanic_abort_tests -Cpanic=abort" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
RUSTFLAGS: "-Cprofile-generate=target/debug -Ccodegen-units=1 -Copt-level=0 -Clink-dead-code -Coverflow-checks=off -Zpanic_abort_tests -Cpanic=abort" | |
RUSTFLAGS: "-Cprofile-generate=${{ vars.RUNNER_TEMP }}/target/debug -Ccodegen-units=1 -Copt-level=0 -Clink-dead-code -Coverflow-checks=off -Zpanic_abort_tests -Cpanic=abort" |
a5434d8
to
e2e699e
Compare
GNU testsuite comparison:
|
e2e699e
to
6e83cd6
Compare
GNU testsuite comparison:
|
37c41f8
to
c13cc2e
Compare
Support for -Zprofile has been removed in rust-lang/rust#131829
89d75ce
to
748467a
Compare
748467a
to
397387e
Compare
The code coverage jobs currently fail with the following error:
The reason is that the support for
-Zprofile
has been removed in rust-lang/rust#131829This PR removes
-Zprofile
, though probably more work is necessary.