-
Notifications
You must be signed in to change notification settings - Fork 13.3k
Fix the progress message for x doc rustc
#112152
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
Conversation
r? @clubby789 (rustbot has picked a reviewer for you, use r? to override) |
This makes it more clear that we're using stage 0 *to document* rustc, not that we're documenting stage0 rustc itself. It also fixes a bug in `msg_sysroot_tool` that would print `Docing`, and removes the `Debug` impl for `Kind` to make sure it doesn't happen again. Before: ``` Documenting stage0 compiler {rustc-main} (aarch64-apple-darwin) ``` After: ``` Documenting compiler {rustc-main} (stage0 -> stage1, aarch64-apple-darwin) ```
@bors r+ |
☀️ Test successful - checks-actions |
Finished benchmarking commit (a9baa16): comparison URL. Overall result: no relevant changes - no action needed@rustbot label: -perf-regression Instruction countThis benchmark run did not return any relevant results for this metric. Max RSS (memory usage)ResultsThis is a less reliable metric that may be of interest but was not used to determine the overall result at the top of this comment.
CyclesThis benchmark run did not return any relevant results for this metric. Binary sizeThis benchmark run did not return any relevant results for this metric. Bootstrap: 647.393s -> 644.81s (-0.40%) |
This makes it more clear that we're using stage 0 to document rustc, not that we're documenting stage0 rustc itself.
It also fixes a bug in
msg_sysroot_tool
that would printDocing
, and removes theDebug
impl forKind
to make sure it doesn't happen again.Before:
After:
thanks @BoxyUwU for catching this!