ci: stop sccache flooding the Actions cache quota#460
Merged
Conversation
sccache's GHA backend wrote one cache entry per compiled object, flooding the 10 GB repo quota with thousands of per-PR entries and thrashing the useful caches. Cache the release target/ as a single consolidated entry instead, master-only writer.
PR-ref caches can't be read by other PRs, so saving the dev cache on every PR just mints throwaway entries against the 10 GB quota.
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (3)
📝 WalkthroughWalkthroughRust CI caching now supports an optional shared namespace, replaces Python-job ChangesRust cache behavior
Estimated code review effort: 2 (Simple) | ~10 minutes Possibly related PRs
🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✨ Finishing Touches🧪 Generate unit tests (beta)
Comment |
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.
Problem
The Actions cache quota (10 GB) repeatedly hit its limit — 1,750+ caches, almost all
sccache/<hash>entries scoped to a single PR ref.Root cause:
ci-python.ymlsetSCCACHE_GHA_ENABLED: true, so sccache used the Actions cache API as its backend and wrote one cache entry per compiled rustc object. A full--releasematurin build across the matrix minted thousands of tiny entries per push. PR-ref caches can't be read by other PRs, so it was pure churn that evicted the caches that matter.Fix
target/via the existingSwatinem/rust-cacheunder a dedicatedreleaseshared-key — one consolidated entry per OS, master-only writer, PRs restore read-only. Added ashared-keyinput to thesetup-rustcomposite to keep it separate from the lint job's dev cache.Net: ~1 release cache/OS + 1 lint cache on master, vs thousands per PR. Entry count drops ~100×.
Existing 1,416 caches already cleared.
Summary by CodeRabbit