-
Notifications
You must be signed in to change notification settings - Fork 1.7k
rustup #3705
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
rustup #3705
Conversation
Current failures:
|
It seems that there are additional messages about deprecated/renamed lints but I'm not sure what causes this. |
remaining failures:
|
Looks like those lints are emitted twice now? |
I tried updating test results but when doing so, there were a lot more changes than actually failing tests. Not sure what is happening :/ |
The new failures are probably due to rust-lang/rust#57907, can you try going back to the rustc you were using yesterday to update the stderr files? |
for file in `fd \.rs$` ; do sed -i s/span_suggestion_with_applicability/span_suggestion/g $file ; done for file in `fd \.rs$` ; do sed -i s/span_suggestion_short_with_applicability/span_suggestion_short/g $file ; done for file in `fd \.rs$` ; do sed -i s/span_suggestions_with_applicability/span_suggestions/g $file ; done
Just fixed these :P Anyway I was already getting this yesterday when the PR wasn't merged yet. |
Awesome! ✨ cc @euclio looks like you don't have to fix Clippy in this case =) |
This is the output. When I run
which looks very wrong (1k deletions..??!) |
NEVERMIND... ._. |
@bors r+ thanks a ton! |
📌 Commit 16c0a2f has been approved by |
rustup rustup rust-lang/rust#57907 and rust-lang/rust#57726 Fixes #3708
☀️ Test successful - checks-travis, status-appveyor |
I think the reason for the duplicates is this change here: They now run I'm not sure why only the first is duplicated though. Maybe because they filter duplicates but the first one has a note. 🤔 |
rustup rust-lang/rust#57907 and rust-lang/rust#57726
Fixes #3708