Uh oh!
There was an error while loading. Please reload this page.
Move rustfmt downloads from bootstrap.py to rustbuild - #97507
Conversation
rust-highfive
commented
May 29, 2022
(rust-highfive has picked a reviewer for you, use r? to override) |
This comment has been minimized.
This comment has been minimized.
Uh oh!
There was an error while loading. Please reload this page.
bors
commented
May 29, 2022
☔ The latest upstream changes (presumably #96687) made this pull request unmergeable. Please resolve the merge conflicts. |
bors
commented
May 30, 2022
☔ The latest upstream changes (presumably #97548) made this pull request unmergeable. Please resolve the merge conflicts. |
There was a problem hiding this comment.
👍 I do think we can wait though, ultimately even our larger components aren't that large compared to memory usage during std/rustc compilation.
Mark-Simulacrum
commented
Jun 1, 2022
r=me with conflicts resolved |
It was confusing to have two functions with the same name but different behavior.
jyn514
commented
Jun 7, 2022
@bors r=Mark-Simulacrum rollup=iffy |
bors
commented
Jun 7, 2022
📌 Commit 9950dec28edde71695ba101481201ae7b43c7323 has been approved by |
This simplifies the arguments to `download_component` in config.rs. It also moves stage0.json metadata handling to `Build::new`, making it easier to download the stage0 compiler in rustbuild later if necessary.
jyn514
commented
Jun 7, 2022
@bors r- r=Mark-Simulacrum rollup=iffy |
bors
commented
Jun 7, 2022
📌 Commit 6115f4e has been approved by |
…askrgr Rollup of 5 pull requests Successful merges: - rust-lang#97507 (Move rustfmt downloads from bootstrap.py to rustbuild) - rust-lang#97813 (Sync rustc_codegen_gcc) - rust-lang#97878 (Add regression test for anonymous lifetimes) - rust-lang#97879 (remove unneeded code) - rust-lang#97880 (Fix typo: fo->for) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
ci-artifacts.rust-lang.orgformat::formatto take aBuilderso it has access todownload_component. I think we may want to reconsider the distinction between Build and Builder at some point; I don't think it's particularly useful.Fixes#95136. Helps with #94829. This is based on #96687 for simplicity.