-
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: GODEBUG=gocacheverify=1 panic (internal cache error: cache verify failed) #35412
Comments
Thanks for reporting this. There does seem to be a reproducibility problem here. I'm not quite sure where it is yet, but I managed to reduce the repro to this small script:
I reproduced this on darwin_amd64 with go1.13.4 and The source files in I'll dig into the output files to see what the actual difference is and what might be causing it. |
The compiler command with
So we're replacing the module source directory with the module path and version. Those end up in debug info in the compiled .a file. But the module path and version don't appear in the cache key. That's the problem. |
Change https://golang.org/cl/207317 mentions this issue: |
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?
Working on this release build tool: https://github.com/jrick/release
I noticed that sometimes the tool would reliably reproduce different binaries than others would create on a fresh build host environment. I figured this was due to something stale in the cache being used. After a
go clean -cache
, I was able to reproduce the same bins as the clean environment again, but decided to look closer at possible cache issues.Running the release tool with
GODEBUG=gocacheverify=1
, I found that it will always fail during either thedcrwallet
orpromptsecret
build (whichever comes later) due to a failed cache sanity check. Full output below.You'll probably want to test with this branch which strips the tool down to only build the dcrwallet and promptsecret executables cross-compiled for linux/amd64 to speed up the repro case: https://github.com/jrick/release/tree/gocacheverify
What did you expect to see?
No panic, reproducible builds from any host environment.
What did you see instead?
The text was updated successfully, but these errors were encountered: