-
Notifications
You must be signed in to change notification settings - Fork 12.8k
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
Bump cargo for rust-lang/cargo#4000 #41830
Conversation
r? @aturon (rust_highfive has picked a reviewer for you, use r? to override) |
@bors: r? @alexcrichton |
@bors: r+ Thanks! |
📌 Commit 2827718 has been approved by |
Due to #37107, this keeps being bumped down the homu queue :( |
@bors p=1 |
⌛ Testing commit 2827718 with merge c35b85d... |
💔 Test failed - status-travis |
Legitimate failure, I believe:
|
I'm quite confused. The same test passes just fine in the cargo repository... r.verbose_version.contains("-nightly") ||
r.verbose_version.contains("-dev") Whereas the cargo PR only checks for |
Ah, looks like I also missed updating the other EDIT: Nope, looks like git is smart enough to keep them the same revision. Well then -- I guess it's probably the version matching then? |
It is slightly disturbing that all cargo tests passed in the cargo repo, but then one of them fails here. Suggests a mismatch in the setups that maybe we should look into. @alexcrichton any idea why this might happen? |
Heh I can name a zillion differences between the two, any one of which could cause tests to pass in one location and fail in the other. In any case rust-lang/cargo#4010 should fix this. |
Hehe, fair. Well, that's the hope. If that fails I'm not entirely sure what else it could be. Let's wait and see. |
…richton Bring test of nightly in line with tests #4000 passes `-Zincremental` to `rustc` only on nightly, but uses a different mechanism for detecting nightly than [cargotest does](https://github.com/rust-lang/cargo/blob/9bf9bddd9297cfb5098be6146d85be551c6d4eff/tests/cargotest/lib.rs#L37). This PR brings the two in line, which should hopefully fix the build failure observed in rust-lang/rust#41830 (comment).
Also relies on rust-lang/cargo#4010
@bors: r+ |
📌 Commit 1617eee has been approved by |
Bump cargo for rust-lang/cargo#4000 rust-lang/cargo#4000 recently landed, which fixes warnings about using `-Z` when `CARGO_INCREMENTAL` is set while running stable/beta builds. As #41751 has now landed, these warnings will turn to errors in the next release, so getting the cargo fix in place is necessary unless we want people confused about why they can no longer compile anything on stable/beta.
☀️ Test successful - status-appveyor, status-travis |
rust-lang/cargo#4000 recently landed, which fixes warnings about using
-Z
whenCARGO_INCREMENTAL
is set while running stable/beta builds. As #41751 has now landed, these warnings will turn to errors in the next release, so getting the cargo fix in place is necessary unless we want people confused about why they can no longer compile anything on stable/beta.