-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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
rustbuild: Don't try to build rustdoc API docs with compiler docs #45366
Conversation
rustdoc is built separately to rustc now so the docs would need to be generated separately as well. Also rustdoc doesn't build at stage 1 which prevented the compiler docs being built at stage 1.
(rust_highfive has picked a reviewer for you, use r? to override) |
It should fix it yeah. I'm pretty sure that unless you use |
Did bors miss the r+? This isn't showing as approved on https://buildbot2.rust-lang.org/homu/queue/rust. |
@bors r=alexcrichton Let's try again. |
📌 Commit 1652c58 has been approved by |
rustbuild: Don't try to build rustdoc API docs with compiler docs rustdoc is built separately to rustc now so the docs would need to be generated separately as well. Also rustdoc doesn't build at stage 1 which prevented the compiler docs being built at stage 1. Fixes: #44629
☀️ Test successful - status-appveyor, status-travis |
rustdoc is built separately to rustc now so the docs would need to be
generated separately as well. Also rustdoc doesn't build at stage 1
which prevented the compiler docs being built at stage 1.
Fixes: #44629