-
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
Update cargo #112601
Update cargo #112601
Conversation
Some changes occurred in src/tools/cargo cc @ehuss |
Several dependencies updated, including some critical C libs. A bit risky (?), so no rollup. @bors r+ p=1 rollup=never |
📌 Commit cb8531c2edf99d89eb82320a0447b9b3d22bb7cc has been approved by It is now in the queue for this repository. |
⌛ Testing commit cb8531c2edf99d89eb82320a0447b9b3d22bb7cc with merge b616e29e7e5e0e4688f772e9bb8a768c8b385080... |
💔 Test failed - checks-actions |
This comment has been minimized.
This comment has been minimized.
@epage could you help check the failure? I've tried building with rust/src/ci/github-actions/ci.yml Lines 610 to 612 in fa8762b
|
@weihanglo my best guess is we are running into path length limits |
fix(embedded): Don't append hash to bin names ### What does this PR try to resolve? More immediately, this is to unblock rust-lang/rust#112601 The hash existed for sharing a target directory. That code isn't implemented yet and a per-user build cache might remove the need for it, so let's remove it for now and more carefully weigh adding it back in. In general, this is also the more appropriate way for a feature that would be first class. ### How should we test and review this PR? This originally built on #12268 but now stands alone as the other PR has windows issues to work out ### Additional information
Going to try it again with the new fix. @bors r+ p=1 rollup=never |
⌛ Testing commit b40b92f with merge 7db1f0dfef76d37488315708db10c713b34071c0... |
The job Click to see the possible cause of the failure (guessed by this bot)
|
💔 Test failed - checks-actions |
Looks like unrelated to Cargo change. Could be a spurious network issue. @bors retry |
☀️ Test successful - checks-actions |
Finished benchmarking commit (5a65be8): 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.125s -> 646.601s (-0.08%) |
fix(embedded): Don't create an intermediate manifest ### What does this PR try to resolve? More immediately, this is to unblock rust-lang/rust#112601 More generally, this gets us away from hackily writing out an out-of-line manifest from an embedded manifest. To parse the manifest, we have to write it out so our regular manifest loading code could handle it. This updates the manifest parsing code to handle it. This doesn't mean this will work everywhere in all cases though. For example, ephemeral workspaces parses a manifest from the SourceId and these won't have valid SourceIds. As a consequence, `Cargo.lock` and `CARGO_TARGET_DIR` are changing from being next to the temp manifest to being next to the script. This still isn't the desired behavior but stepping stones. ### How should we test and review this PR? A Commit at a time ### Additional information In production code, this does not conflict with #12255 (due to #12262) but in test code, it does.
11 commits in 49b6d9e179a91cf7645142541c9563443f64bf2b..0c14026aa84ee2ec4c67460c0a18abc8519ca6b2
2023-06-09 17:21:19 +0000 to 2023-06-14 18:43:05 +0000
default
branch instead ofmain
by default (docs: clarify the use ofdefault
branch instead ofmain
by default cargo#12251)-Z
flags list is sorted (test(z-flags): Verify-Z
flags list is sorted cargo#12224)This commit also update LICENSE exceptions, as Cargo introduced a newer version of
dunce
andblake3
as dependencies.r? @ghost