go-tool-cache
last updated: Oct 20, 2023
https://github.com/bradfitz/go-tool-cache
Like Go's built-in build/test caching but wish it weren't purely stored on local disk in the
$GOCACHE
directory?
Want to share your cache over the network between your various machines, coworkers, and CI runs without all that GitHub actions/caches tarring and untarring?
Along with a modification to Go's
cmd/go
tool (open proposal), this repo lets you write customGOCACHE
implementations to handle the cache however you'd like.vim