ci: cache maven wrapper distribution to avoid per-build downloads - #2527
Merged
Conversation
The wrapper jar and Maven distribution zip land under ~/.m2/wrapper, a sibling of ~/.m2/repository -- the existing cache path never reached it, so every build re-fetched apache-maven-3.9.14-bin.zip from Maven Central. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_011d1LPWiNeTmi5johUb4ntn
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.
Description
The Maven wrapper jar and the Maven distribution zip it fetches (
apache-maven-3.9.14-bin.zip) land under~/.m2/wrapper, a sibling directory of~/.m2/repository. The existingCache Maven packagesstep inbuild.ymlonly caches~/.m2/repository, so every build re-downloaded the wrapper jar and the ~10MB Maven distribution zip from Maven Central, even on a full dependency-cache hit.This adds a dedicated cache step for
~/.m2/wrapper, keyed onhashFiles('**/maven-wrapper.properties')so a wrapper-version bump invalidates only this small cache rather than the larger dependency cache.Note:
release.ymlalready caches the whole~/.m2directory and was unaffected by this gap; this change bringsbuild.ymlin line with it.Generated by Claude Code