-
Notifications
You must be signed in to change notification settings - Fork 156
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cmd/release: don't include godoc in releases in Go 1.13+
Tested that it's still present in Go 1.12: $ release -version=go1.12.999 -target=linux-amd64 -watch -skip_tests -rev=release-branch.go1.12 -tools=release-branch.go1.12 -net=release-branch.go1.12 ... $ ls -lh go1.12.999.linux-amd64.tar.gz -rw-r--r-- 1 bradfitz bradfitz 122M Apr 29 19:28 go1.12.999.linux-amd64.tar.gz $ tar -ztf go1.12.999.linux-amd64.tar.gz | grep godoc go/bin/godoc go/src/cmd/vendor/github.com/google/pprof/profile/testdata/go.godoc.thread go/src/cmd/vendor/github.com/google/pprof/profile/testdata/go.godoc.thread.string But not with Go 1.13: $ release -version=go1.13beta0 -target=linux-amd64 -watch -skip_tests -rev=8c1f78524e421ac01e35e8805dd7a45bf98c2a79 ... $ ls -lh go1.13beta0.linux-amd64.tar.gz -rw-r--r-- 1 bradfitz bradfitz 115M Apr 29 19:00 go1.13beta0.linux-amd64.tar.gz $ tar -ztf go1.13beta0.linux-amd64.tar.gz | grep godoc $ Fixes golang/go#30029 Updates golang/go#27151 Change-Id: I9ac5c1b2bc76f184bf05fdcac86bb2e37b57c77c Reviewed-on: https://go-review.googlesource.com/c/build/+/174322 Reviewed-by: Dmitri Shuralyov <[email protected]>
- Loading branch information
Showing
2 changed files
with
36 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters