Make --all-targets in x.py check opt-in#77473
Merged
bors merged 3 commits intorust-lang:masterfrom Oct 4, 2020
Merged
Conversation
Member
|
Can you also add a note to the changelog? No need to bump the version number, but it would be nice to keep track of changes in behavior. |
Member
Author
|
Hm, I thought about that. I am unsure we should include minor changes like this for commands that don't produce artifacts; it feels like that might needlessly bloat the changelog. This case though is very much in the middle for me, and since you feel it merits it, I'll add it. |
This matches Cargo behavior and avoids the (somewhat expensive) double checking, as well as the unfortunate duplicate error messages (rust-lang#76822, rust-lang/cargo#5128).
8d7145b to
bcab97c
Compare
Member
Author
|
Adjusted changelog as well. |
Contributor
|
@bors r+ rollup |
Collaborator
|
📌 Commit eaa0186 has been approved by |
bors
added a commit
to rust-lang-ci/rust
that referenced
this pull request
Oct 4, 2020
Rollup of 11 pull requests Successful merges: - rust-lang#75143 (Use `tracing` spans to trace the entire MIR interp stack) - rust-lang#75699 (Uplift drop-bounds lint from clippy) - rust-lang#76768 (Test and reject out-of-bounds shuffle vectors) - rust-lang#77190 (updated p! macro to accept literals) - rust-lang#77388 (Add some regression tests) - rust-lang#77419 (Create E0777 error code for invalid argument in derive) - rust-lang#77447 (BTreeMap: document DrainFilterInner better) - rust-lang#77468 (Fix test name) - rust-lang#77469 (Improve rustdoc error for failed intra-doc link resolution) - rust-lang#77473 (Make --all-targets in x.py check opt-in) - rust-lang#77508 (Fix capitalization in blog post name) Failed merges: r? `@ghost`
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
In particular due to #76822, making this the default is currently suboptimal.
r? @ecstatic-morse