-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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
Fix --build-plan
with dev-dependencies
#6086
Conversation
r? @matklad (rust_highfive has picked a reviewer for you, use r? to override) |
Is it necessary to download everything? Can |
Perhaps? I didn't really want to investigate the build plan that much as it's an unstable feature anyway... I'll take a look |
Regressed in rust-lang#6005 it looks like the build plan requires all packages to be downloaded rather than just those coming out of `unit_dependenices`, so let's make sure to download everything! Closes rust-lang#6082
0fd46e5
to
d8e43e8
Compare
@bors r+ |
📌 Commit d8e43e8 has been approved by |
☀️ Test successful - status-appveyor, status-travis |
Regressed in #6005 it looks like the build plan requires all packages to
be downloaded rather than just those coming out of
unit_dependenices
,so let's make sure to download everything!
Closes #6082