-
Notifications
You must be signed in to change notification settings - Fork 17.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
proposal: cmd/go: build argument to disable readonly $GOPATH/pkg/mod #31481
Comments
Some build systems (looking at you golang) create read only directories as caches. As such rm -rf will actually fail, causing clean and <pkg>-dirclean to fail. This patch will cause `make clean` to run chmod -R +w on the relevant directory first, which will allow rm -rf to work. This may be resolved if golang/go#31481 is resolved satisfactorily. Signed-off-by: Louis des Landes <[email protected]>
Some build systems (looking at you golang) create read only directories as caches. As such rm -rf will actually fail, causing clean and <pkg>-dirclean to fail. This patch will cause `make <pkg>-dirclean` to force chmod -R +w on the relevant directory first, which will allow rm -rf to work. This may be resolved if golang/go#31481 is resolved satisfactorily. Signed-off-by: Louis des Landes <[email protected]>
Some build systems (looking at you golang) create read only directories as caches. As such rm -rf will actually fail, causing clean and <pkg>-dirclean to fail. This patch will cause `make clean` to run chmod -R +w on the relevant directory first, which will allow rm -rf to work. This may be resolved if golang/go#31481 is resolved satisfactorily. Signed-off-by: Louis des Landes <[email protected]>
Some build systems (looking at you golang) create read only directories as caches. As such rm -rf will actually fail, causing clean and <pkg>-dirclean to fail. This patch will cause `make <pkg>-dirclean` to force chmod -R +w on the relevant directory first, which will allow rm -rf to work. This may be resolved if golang/go#31481 is resolved satisfactorily. Signed-off-by: Louis des Landes <[email protected]>
@agnivade - the default being read only makes complete sense to me, I'm not suggesting changing that. It's worth noting in this kind of scenario (embedded build systems), tests are not going to be run as part of the build process, and the whole build directory (which includes this cache directory) frequently gets removed entirely. So we're looking for a way to allow (As an aside, happy to do the PR for this if it's acceptable) |
Marking it as a proposal. |
You can already run Why would an explicit argument be more helpful than an explicit command? Seems like you have to update your configuration either way. |
@bcmills: The problem for us is that we can't modify our CI system to run those commands at the start of a build. The fault here is 100% with the golang compiler, it has no valid case for removing the write bit from files & directories in the build tree. Running |
@paul-betafive, how are you able to add arguments to the |
We can add a We're using GitLab CI which unconditionally uses |
Wait, why is your module cache in the same |
@bcmills In my case at least it's not - buildroot (for example) build's it's output in a subdirectory of the repo however (which is under Having the module cache exist outside of the build directory means the build can potentially be affected by code outside of the repository. For CI to a certain extend I agree that having the module cache actually be cached across builds makes a certain amount of sense. FWIW the other side of the fence doesn't want to have to add a new command to their Makefile's specifically to handle a single package (golang) doing this. I'd like to find somewhere in the middle if possible! |
This has come up enough that I think we should do something. There are good reasons for the default, but there are good reasons to be able to override it too. I suggest /cc @bcmills @jayconrod |
I'm a little reluctant to put That said, I'm still not sure why |
@jasonkeene, as noted in #31481 (comment) I think the execution bit is an easier win. Would you mind filing a separate issue for that? |
Regarding the flag name: I would prefer something that does not assume that the path to the module cache always contains the string So I would really rather we find a name other than How about |
-modcacherw is fine. Let's not bring Unix mode bits into this. |
Change https://golang.org/cl/202079 mentions this issue: |
Thank you for working on this. Having to chmod things is indeed a huge hassle and sometimes not available in all build systems. Does this mean I'll need to pass |
My expectation/ guess is |
Exactly: we expect that it will generally be used in conjunction with |
Change https://golang.org/cl/202563 mentions this issue: |
The -modcacherw flag is now registered in work.AddModCommonFlags, which is called from work.AddBuildFlags, where it was registered before. 'go mod' subcommands register the flag by calling work.AddModCommonFlags directly. Also, build commands now exit with an error if -modcacherw is set explicitly (not in GOFLAGS) in GOPATH mode. Updates #31481 Change-Id: I461e59a51ed31b006fff4d5c57c2a866be0bbf38 Reviewed-on: https://go-review.googlesource.com/c/go/+/202563 Run-TryBot: Jay Conrod <[email protected]> TryBot-Result: Gobot Gobot <[email protected]> Reviewed-by: Bryan C. Mills <[email protected]>
…aded by gomod-vendor Use module cache local to the WRKDIR and add the -modcacherw flag (available in go1.14 [1, 2]) to instruct go mod vendor to leave directories in the module cache read-write instead of making them unwritable. [1] golang/go#31481 [2] https://go-review.googlesource.com/c/go/+/202079/ Reviewed by: swills Differential Revision: https://reviews.freebsd.org/D23063 git-svn-id: svn+ssh://svn.freebsd.org/ports/head@527631 35697150-7ecd-e111-bb59-0022644237b5
…aded by gomod-vendor Use module cache local to the WRKDIR and add the -modcacherw flag (available in go1.14 [1, 2]) to instruct go mod vendor to leave directories in the module cache read-write instead of making them unwritable. [1] golang/go#31481 [2] https://go-review.googlesource.com/c/go/+/202079/ Reviewed by: swills Differential Revision: https://reviews.freebsd.org/D23063
…aded by gomod-vendor Use module cache local to the WRKDIR and add the -modcacherw flag (available in go1.14 [1, 2]) to instruct go mod vendor to leave directories in the module cache read-write instead of making them unwritable. [1] golang/go#31481 [2] https://go-review.googlesource.com/c/go/+/202079/ Reviewed by: swills Differential Revision: https://reviews.freebsd.org/D23063 git-svn-id: svn+ssh://svn.freebsd.org/ports/head@527631 35697150-7ecd-e111-bb59-0022644237b5
…aded by gomod-vendor Use module cache local to the WRKDIR and add the -modcacherw flag (available in go1.14 [1, 2]) to instruct go mod vendor to leave directories in the module cache read-write instead of making them unwritable. [1] golang/go#31481 [2] https://go-review.googlesource.com/c/go/+/202079/ Reviewed by: swills Differential Revision: https://reviews.freebsd.org/D23063
What did you do?
This has been discussed previously:
#27161
Most build systems (buildroot et al.) expect to be able to do an
rm -rf
to do a completely fresh build. However, because the pkg sets it's containing directories to read only, this command will fail.Requiring a custom command to be added to various Makefile's scattered around the place to clean this up is far from ideal.
A potential solution might be to add an environment variable to disable this read only permission change on the pkg directory.
Open to other alternatives - but ideally there needs to be a command on the BUILD side that allows
rm -rf
to work correctly.The text was updated successfully, but these errors were encountered: