-
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
all: run.{bash,bat,rc} sets GOPATH inconsistently [1.15 backport] #45239
Comments
Change https://golang.org/cl/304773 mentions this issue: |
Approving per discussion in a release meeting. This backport applies to both 1.16 (#45240) and 1.15 (this issue). |
Change https://golang.org/cl/304949 mentions this issue: |
Closed by merging 6df5d3a to release-branch.go1.15. |
…un.bat, run.rc We used to clear GOPATH in all the build scripts. Clearing GOPATH is misleading at best, since you just end up with the default GOPATH (%USERPROFILE%\go on Windows). Unless that's your GOROOT, in which case you end up with a fatal error from the go command (#43938). run.bash changed to setting GOPATH=/dev/null, which has no clear analogue on Windows. run.rc still clears GOPATH. Change them all to set GOPATH to a non-existent directory /nonexist-gopath or c:\nonexist-gopath. For #45238. Fixes #45239. Change-Id: I51edd66d37ff6a891b0d0541d91ecba97fbbb03d Reviewed-on: https://go-review.googlesource.com/c/go/+/288818 Trust: Russ Cox <[email protected]> Trust: Jason A. Donenfeld <[email protected]> Reviewed-by: Cherry Zhang <[email protected]> Reviewed-by: Alex Brainman <[email protected]> Reviewed-by: Jason A. Donenfeld <[email protected]> (cherry picked from commit bb6efb9) Reviewed-on: https://go-review.googlesource.com/c/go/+/304773 Run-TryBot: Dmitri Shuralyov <[email protected]> TryBot-Result: Go Bot <[email protected]> Reviewed-by: Alexander Rakoczy <[email protected]> Reviewed-by: Carlos Amedee <[email protected]> Trust: Carlos Amedee <[email protected]>
Add support for a linux-386-longtest test-only target. This is the third longtest builder that we have. Both linux-{386,amd64}-longtest targets are passing on master for future Go 1.17 releases, as well as release-branch.go1.16 and release-branch.go1.15 now that CL 288818 is cherry-picked (see backport issues golang/go#45240 and golang/go#45239). Start including them in the release process by default, so that we have more automated test coverage and more information available during the upcoming releases, and in turn can use it to improve the releases and the release process further. Fixes golang/go#29252. Change-Id: I9740c9ce5cae73a3ed9fe320219f1044f5fdcc9a Reviewed-on: https://go-review.googlesource.com/c/build/+/304949 Trust: Dmitri Shuralyov <[email protected]> Reviewed-by: Alexander Rakoczy <[email protected]> Reviewed-by: Carlos Amedee <[email protected]>
@dmitshur requested issue #45238 to be considered for backport to the next 1.15 minor release.
The text was updated successfully, but these errors were encountered: