perf(ci): share one bounded Rust cache - #8
Merged
Conversation
Teakowa
marked this pull request as ready for review
August 17, 2026 11:00
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.
What changed
linux-ciRust cache family for LPP CI;rustjob the only cache writer, and only onmain;conformancejob restore-only so cache growth stays bounded;Cargo.lockconsistently with--locked;Why
The current
rustandconformancejobs run in parallel on separate fresh runners and independently download/compile the same workspace baseline. The previous artifact-based attempt removed the duplicate build but serialized the jobs, which improved runner work at the cost of CI latency. This revision keeps the jobs parallel and uses a single bounded cache instead.There is no release-artifact or performance contract in this workflow: conformance validates protocol behavior against fixtures and the mock provider, so a dedicated optimized build did not provide additional coverage.
Cache policy
linux-ci;rustsaves only onrefs/heads/main;conformancenever saves;Validation
Fixes #7