-
Notifications
You must be signed in to change notification settings - Fork 18.4k
Description
NOTE: The accepted proposal is #50603 (comment).
cmd/go embeds dependency version information in binaries, which is very useful. From Go 1.18 onwards, cmd/go also embeds VCS information in binaries, which makes it even more useful than it was before.
As #37475 mentions, people place version information in binaries using -ldflags='-X foo=bar'
, which requires an additional build wrapper. The new VCS stamping feature of cmd/go should alleviate the need for external wrapper, but I am afraid it comes short.
The version information, in the sense of Go's pseudo version is not recorded for the main module when doing go build
:
: emerald:ver; go build
: emerald:ver; go version -m hello | grep 'mod.*hello'
mod mgk.ro/hello (devel)
: emerald:ver;
The version is recorded as expected when doing go install
:
: emerald:ver; go install robpike.io/ivy@latest
go: downloading robpike.io/ivy v0.1.124
: emerald:ver; go version -m `which ivy` | grep 'mod.*ivy'
mod robpike.io/ivy v0.1.12 h1:qI7dnEiXhorB+za07W6qX3sG+IvBK4EUl38vUHAf53Q=
: emerald:ver;
: emerald:ver;
I am afraid this limitation of cmd/go will continue to force people to use external build wrappers that set -ldflags
, which is rather unfortunate.
I am not the first to want main module version information in binaries, this has been already asked for in various issues, for example in #29814, which was closed as a duplicate of #37475, but it really wasn't a duplicate, as #37475 is about VCS information, and #29814 is about semantic versioning. Other examples of people asking for this feature are mvdan/sh#519 and #29228 (comment) where various workarounds were proposed.
Speaking of workarounds, the only workaround that I know that currently works would be to create a local module proxy and pass GOPROXY
to go install
, but that is an extremely high-overhead workaround, and go install
is not a replacement for go build
anyway, since go install
comes with some rather severe limitations regarding how vendoring works and what you can put in go.mod, and go install
doesn't support controlling GOBIN
when cross-compiling.
I realize that Git tags are a local concept, and by doing the "wrong" git operations one could come up with a different pseudo-version for the same source code. I am afraid I don't have any solution or suggestion regarding this git misfeature, except to note that even in this case the hash information is recorded correctly, and in every case by the virtue of having access to the local source code the programmer can always do some local operation that has the potential to cause a version mislabeling. Git is just more prome to do this by accident, but the ability is there, always.
I don't have any stats to back this up, but from my experience most corporate source code is built by go build
, not go install
, and it would be great if somehow Go's notion of versioning would be stamped by go build
.
Metadata
Metadata
Assignees
Type
Projects
Status