-
Notifications
You must be signed in to change notification settings - Fork 13k
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
Don't run sanity checks for x.py setup
#84940
Conversation
(rust-highfive has picked a reviewer for you, use r? to override) |
Seems reasonable, given that we don't use it for anything else. |
Uh, I don't see a response to #84940 (comment) -- either in commits or the comment thread. So I think this is waiting on author still? |
@Mark-Simulacrum yeah I haven't gotten around to this PR - I think you forgot to switch the labels the last time. |
These requirements change as soon as the command finishes running, and `setup` doesn't build anything, so the check doesn't make sense. Previously, `x.py setup` would give hard errors if `ninja` and `cmake` were not installed, even if the new profile didn't require them.
x.py setup
@bors r+ rollup |
📌 Commit 3aefd77 has been approved by |
…laumeGomez Rollup of 8 pull requests Successful merges: - rust-lang#83433 (Pass --cfg=bootstrap for proc macros built by stage0) - rust-lang#84940 (Don't run sanity checks for `x.py setup`) - rust-lang#85912 (Use `Iterator::any` and `filter_map` instead of open-coding them) - rust-lang#85965 (Remove dead code from `LocalAnalyzer`) - rust-lang#86010 (Fix two ICEs in the parser) - rust-lang#86040 (Fix display for search results) - rust-lang#86058 (Remove `_` from E0121 diagnostic suggestions) - rust-lang#86077 (Fix corrected example in E0759.md) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
These requirements change as soon as the command finishes running, and
setup
doesn't build anything, so the check doesn't make sense.Previously,
x.py setup
would give hard errors ifninja
andcmake
were not installed, even if the new profile didn't require them.
Fixes #84938.