-
Notifications
You must be signed in to change notification settings - Fork 13.4k
Rollup of 7 pull requests #75116
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
Rollup of 7 pull requests #75116
Conversation
The purpose of the auto-fallible job is to run builders that are likely to fail on CI without gating on them. Having fast-fail enabled there kinda defeats the purpose, as if one of them fails we can't monitor the outcome of the other ones. This was prompted by the aarch64-gnu builder consistently failing due to a broken test, preventing us from seeing if the macOS spurious failure is fixed.
riscv64 has an LLVM bug that makes rust-analyzer not build.
add `unsigned_abs` to signed integers Mentioned on rust-lang/rfcs#2914 This PR simply adds an `unsigned_abs` to signed integers function which returns the correct absolute value as a unsigned integer.
…-obk Lint path statements to suggest using drop when the type needs drop Fixes rust-lang#48852. With this change the current lint description doesn't really fit entirely anymore I think.
…ark-Simulacrum Clarify reuse of a BTreeMap insert support function and treats split support likewise r? @Mark-Simulacrum
Fix logging for rustdoc rust-lang#74726 (comment)
…r=lcnr Do not trigger `unused_braces` for `while let` Follow-up for rust-lang#75031 r? @lcnr
…Mark-Simulacrum ci: disable fast-fail on auto-fallible The purpose of the auto-fallible job is to run builders that are likely to fail on CI without gating on them. Having fast-fail enabled there kinda defeats the purpose, as if one of them fails we can't monitor the outcome of the other ones. This was prompted by the aarch64-gnu builder consistently failing due to a broken test, preventing us from seeing if the macOS spurious failure is fixed. r? @Mark-Simulacrum
…r=matklad Disable building rust-analyzer on riscv64 riscv64 has an LLVM bug that makes rust-analyzer not build. Should permit future rust-analyzer ups (e.g., rust-lang#74813) to land.
📌 Commit 1be0d55 has been approved by |
⌛ Testing commit 1be0d55 with merge 41dd10b6d2253e62a8abba4ecf160ceb5fe3d9f8... |
@Manishearth it looks like GHA never actually triggered here, so I don't think this will ever succeed |
@bors retry yield |
⌛ Testing commit 1be0d55 with merge 8805f7f58379998337cdba5c4224df095e525d40... |
It didn't trigger again -- I only see the AP jobs on that commit not the GHA ones. |
@bors r- The workflow is not valid. .github/workflows/ci.yml (Line: 578, Col: 7): Unexpected value 'fast-fail' From https://github.com/rust-lang-ci/rust/actions/runs/193864895 Closing. |
Successful merges:
unsigned_abs
to signed integers #74759 (addunsigned_abs
to signed integers)unused_braces
forwhile let
#75083 (Do not triggerunused_braces
forwhile let
)Failed merges:
r? @ghost