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
$GOCACHEdirectory?
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/gotool (open proposal), this repo lets you write customGOCACHEimplementations to handle the cache however you'd like.vim