Re: [go-nuts] Share GOMODCACHE between unix users

2020-08-19 Thread Marcin Romaszewicz
I have many users building Go at my company, and instead of sharing the module cache on the filesystem, a much better approach is to use a caching module proxy, such as Athens (https://github.com/gomods/athens). See the documentation for the GOPROXY environment variable. -- Marcin On Wed, Aug 19

[go-nuts] Share GOMODCACHE between unix users

2020-08-19 Thread wilk
Hi, I would like to have a global GOMODCACHE for all unix users, or a group of users to gain space and speed. I trust all the users. Using the same GOMODCACHE for all users doesn't works, the perms are only writable by the user running the build. Is there a workaround ? Could it be a feature ?