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.
This pull request introduces a tool caching mechanism to speed up builds by reusing pre-built tool binaries, with integration for both local development and GitHub Actions. It also updates the Docker and Makefile workflows to support caching, ensures proper cache cleanup, and improves the build environment setup.
Tool caching and build workflow improvements:
builder/build.shto check for and use cached tool binaries fromtools-cache, falling back to building from source if the cache is missing or incomplete. Also supports GitHub Actions cache integration and local cache extraction..github/workflows/build-test.ymlto set up Docker Buildx and cache tool binaries in CI, setting an environment flag when the cache is hit.builder/build.Dockerfileto accept aTOOLS_IMAGEbuild argument, pre-install Go tools, and pre-download Go module dependencies for faster builds.Makefile and cache management:
Makefileto excludetools-cachefrom license checks and to add aclean-tools-cachetarget, ensuring cached binaries can be cleaned up withmake clean. [1] [2]