-
Notifications
You must be signed in to change notification settings - Fork 12.9k
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
Support early stopping too old pre-installed tidy
command for macOS in the HTML checker
#90663
Support early stopping too old pre-installed tidy
command for macOS in the HTML checker
#90663
Conversation
… in the HTML checker
Thanks for the pull request, and welcome! The Rust team is excited to review your changes, and you should hear from @Mark-Simulacrum (or someone else) soon. Please see the contribution instructions for more information. |
Seems OK. @bors r+ rollup=iffy |
📌 Commit f06a711 has been approved by |
…oo-old-tidy-for-macos, r=Mark-Simulacrum Support early stopping too old pre-installed `tidy` command for macOS in the HTML checker This PR brings early stopping the HTML checker before errors, which leave some macOS users confused, and suggesting installing a newer `tidy` command. The pre-installed `tidy` command on macOS is too old, released on 31 October 2006. Additionally, I can see the same date at [StackOverflow](https://stackoverflow.com/questions/22283382/overwrite-osx-tidy ) seven years ago. The `tidy` does not support two indispensable options: `--mute-id` and `--mute`. So, the `./x.py test` command fails with a bunch of errors due not to muting them. I could confirm the `./x.py test` command before installing a newer `tidy` failed and its command after the installation succeeded.
☀️ Test successful - checks-actions |
Finished benchmarking commit (f2f55e8): comparison url. Summary: This benchmark run did not return any relevant changes. If you disagree with this performance assessment, please file an issue in rust-lang/rustc-perf. @rustbot label: -perf-regression |
This PR brings early stopping the HTML checker before errors, which leave some macOS users confused, and suggesting installing a newer
tidy
command.The pre-installed
tidy
command on macOS is too old, released on 31 October 2006. Additionally, I can see the same date at StackOverflow seven years ago. Thetidy
does not support two indispensable options:--mute-id
and--mute
. So, the./x.py test
command fails with a bunch of errors due not to muting them.I could confirm the
./x.py test
command before installing a newertidy
failed and its command after the installation succeeded.