You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As suggeste by @hknutzen in #178, Gremlins should use a separate temporary directory as Go build cache. This should be removed after each run of gremlins.
This should be done to avoid an unbound growth of the default cache directory.
The go command caches build outputs for reuse in future builds. The default location for cache data is a subdirectory named go-build in the standard user cache directory for the current operating system. Setting the GOCACHE environment variable overrides this default, and running 'go env GOCACHE' prints the current cache directory.
The text was updated successfully, but these errors were encountered:
As suggeste by @hknutzen in #178, Gremlins should use a separate temporary directory as Go build cache. This should be removed after each run of gremlins.
This should be done to avoid an unbound growth of the default cache directory.
https://pkg.go.dev/cmd/go#hdr-Build_and_test_caching
The go command caches build outputs for reuse in future builds. The default location for cache data is a subdirectory named go-build in the standard user cache directory for the current operating system. Setting the GOCACHE environment variable overrides this default, and running 'go env GOCACHE' prints the current cache directory.
The text was updated successfully, but these errors were encountered: