aboutsummaryrefslogtreecommitdiff
path: root/api
diff options
context:
space:
mode:
authorJay Conrod <jayconrod@google.com>2021-10-01 11:21:49 -0700
committerJay Conrod <jayconrod@google.com>2021-10-14 18:44:37 +0000
commita37bebc042672d20837ea348d45e39740568cb77 (patch)
tree7300330476aff1cac6a5f644116e080efde51639 /api
parenta8c5a994d62cc920c134426f7eae892b013ee32d (diff)
downloadgo-a37bebc042672d20837ea348d45e39740568cb77.tar.gz
go-a37bebc042672d20837ea348d45e39740568cb77.zip
cmd/go: stamp VCS revision and uncommitted status into binaries
When the go command builds a binary, it will now stamp the current revision from the local Git or Mercurial repository, and it will also stamp whether there are uncommitted edited or untracked files. Only Git and Mercurial are supported for now. If no repository is found containing the current working directory (where the go command was started), or if either the main package directory or the containing module's root directory is outside the repository, no VCS information will be stamped. If the VCS tool is missing or returns an error, that error is reported on the main package (hinting that -buildvcs may be disabled). This change introduces the -buildvcs flag, which is enabled by default. When disabled, VCS information won't be stamped when it would be otherwise. Stamped information may be read using 'go version -m file' or debug.ReadBuildInfo. For #37475 Change-Id: I4e7d3159e1c270d85869ad99f10502e546e7582d Reviewed-on: https://go-review.googlesource.com/c/go/+/353930 Trust: Jay Conrod <jayconrod@google.com> Run-TryBot: Jay Conrod <jayconrod@google.com> TryBot-Result: Go Bot <gobot@golang.org> Reviewed-by: Bryan C. Mills <bcmills@google.com>
Diffstat (limited to 'api')
-rw-r--r--api/next.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/api/next.txt b/api/next.txt
index ced738e480..9e4bb83cb7 100644
--- a/api/next.txt
+++ b/api/next.txt
@@ -4,6 +4,10 @@ pkg debug/buildinfo, type BuildInfo = debug.BuildInfo
pkg runtime/debug, method (*BuildInfo) MarshalText() ([]byte, error)
pkg runtime/debug, method (*BuildInfo) UnmarshalText() ([]byte, error)
pkg runtime/debug, type BuildInfo struct, GoVersion string
+pkg runtime/debug, type BuildInfo struct, Settings []BuildSetting
+pkg runtime/debug, type BuildSetting struct
+pkg runtime/debug, type BuildSetting struct, Key string
+pkg runtime/debug, type BuildSetting struct, Value string
pkg syscall (darwin-amd64), func RecvfromInet4(int, []uint8, int, *SockaddrInet4) (int, error)
pkg syscall (darwin-amd64), func RecvfromInet6(int, []uint8, int, *SockaddrInet6) (int, error)
pkg syscall (darwin-amd64), func SendtoInet4(int, []uint8, int, SockaddrInet4) error