Conversation
Member
Author
|
Member
|
Can we clear up the depot once and the old installation of Julia v1.7, if it's still there? I see there's a call to |
Member
|
For Cargo, we may need to implement JuliaPackaging/Yggdrasil#10590 (comment) |
3f8df92 to
3464515
Compare
The CI agents share a single machine and disk, and recent runs died with ENOSPC (sometimes taking the agent down mid-job, skipping Cleanup and leaking mounts/tempdirs into subsequent runs): - run the matrix legs serially (maxParallel: 1) so their peak disk usage doesn't stack; - add a PreCleanup step that removes leftovers of runs that died before their Cleanup step, and immediately Pkg.gc()s unreferenced artifacts (mainly old compiler shards) instead of after the 7-day grace period; - move the full shard test to the squashfs leg, where shards stay compressed on disk; - print df -h in SystemInfo/PreCleanup/Cleanup for diagnosability. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
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.
Locally, I was seeing a bunch of failures that seemingly didn't happen on CI. This PR try to hardens against those failures in order to get CI to pass locally.
On CI there was a hash mismatch, fixed here.
Also bump to 1.12, which is what Yggdrasil uses. The rootfs doesn't have it though, so downloading the release for now.