-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
Rollup up 3 pull requests #5339
Conversation
rustups rust-lang/rust#69189 which is part of rust-lang/rust#70085 (at least I think this is the only pr that changes clippy test stdout)
@bors r+ |
📌 Commit a1cfd7c has been approved by |
Rollup up 3 pull requests changelog: none We need all of these merging at the same time.
💔 Test failed - checks-action_test |
looks spurious 🤔 @bors retry |
Rollup up 3 pull requests changelog: none We need all of these merging at the same time.
💔 Test failed - checks-action_test |
|
@bors try |
Rollup up 3 pull requests changelog: none We need all of these merging at the same time.
💔 Test failed - checks-action_test |
@bors try |
Rollup up 3 pull requests changelog: none We need all of these merging at the same time.
For debugging you could add
before the extract binary step. This will show which files get produced by compiling the integration test. |
@bors try |
Rollup up 3 pull requests changelog: none We need all of these merging at the same time.
yeah, somehow the test binary is not produced. |
error: transmute from a type (`&T`) to itself | ||
--> $DIR/transmute_ptr_to_ptr.rs:8:5 | ||
| | ||
LL | std::mem::transmute::<&'a T, &'static T>(t) | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
| | ||
= note: `-D clippy::useless-transmute` implied by `-D warnings` |
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.
We explicitly don't want to lint this. See my comment in #5333 (comment)
💔 Test failed - checks-action_test |
This should fix it: diff --git a/.github/workflows/clippy_bors.yml b/.github/workflows/clippy_bors.yml
index a4f7b64c..8393b16d 100644
--- a/.github/workflows/clippy_bors.yml
+++ b/.github/workflows/clippy_bors.yml
@@ -209,7 +209,7 @@ jobs:
run: |
DIR=$CARGO_TARGET_DIR/debug
find $DIR ! -executable -o -type d ! -path $DIR | xargs rm -rf
- mv $DIR/integration-* $DIR/integration
+ mv $DIR/deps/integration-* $DIR/integration
rm -rf $CARGO_TARGET_DIR/release
- name: Upload Binaries |
We'll need another rustup: #66131 I'm working on it. I'll open a new rollup PR, once it's ready. @bors treeclosed=1000 |
changelog: none
We need all of these merging at the same time.