-
Notifications
You must be signed in to change notification settings - Fork 17.9k
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
cmd/go: go env output is unstable/non-deterministic #42628
Comments
I can't help but wonder, is that Option 1 is that it's a temporary directory created for a following build, which does not happen with Option 2 is that the temporary directory is created and left behind, to perhaps allow the flag to be useful at a later time. I find this almost worse than option 1, because this would mean that I imagine it's option 1, in which case |
I wonder if it would make more sense to match the output with a regular expression though, like we do in the cmd/go script tests? The script tests seem like a very similar use case, though I guess the difference is that in tests, we can add lots of extra non-user-friendly commands to make the output more machine-readable (like |
@mvdan |
Thanks, @jayconrod
That's exactly how we are sanitising the output from various commands (we need to do the same for
Exactly. The guides themselves aim to present a very simple sequence of steps for the user; they see and run those commands. So we have to keep things as straightforward and as little magic as possible. |
I think we should make sure that |
In particular, it seems very reasonable to me for wrappers around the |
Care to clarify if this would be fine to fix during the current freeze? It almost seems simple enough that I might give it a try. I'd personally go for removing the flag argument entirely, because I can't think how it would ever be useful as part of the |
I think it depends on how invasive the fix is? I did a bit of investigating and this seems to be reproducible all the way back to Go 1.10 (that is, the bug is as old as the build cache). |
What version of Go are you using (
go version
)?Does this issue reproduce with the latest release?
Yes
What operating system and processor architecture are you using (
go env
)?go env
OutputWhat did you do?
As you can see from the
go env
output above,GOGCCFLAGS
includes a temporary build directory path that changes with each invocation ofgo env
.Whilst putting together a Play with Go guide on installing Go (https://play-with-go.dev/installing-go_go115_en/) I noticed this unstable output. Unfortunately, it makes writing guides that have automated checks to ensure they still work impossible without a custom sanitisation step (c.f. conversation with @bcmills on Slack about the output of
go get
being non-deterministic).Can the output of
go env
be made deterministic in the same way?cc @bcmills @jayconrod
FYI @mvdan
The text was updated successfully, but these errors were encountered: