You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When trying to build from the cloned repo, I get this Go toolchain not available error.
The fix mentioned here is to make sure the Go version in go.mod is 1.22.0
Making this change locally fixes the build for me.
I then get an error if I move the binary off the build system because CGO_ENABLED=0 is not in the make file.
I can build a static binary if I use this command CGO_ENABLED=0 make clean && make build.
I can open a PR with these changes?
The text was updated successfully, but these errors were encountered:
When trying to build from the cloned repo, I get this Go toolchain not available error.
The fix mentioned here is to make sure the Go version in go.mod is 1.22.0
Making this change locally fixes the build for me.
I then get an error if I move the binary off the build system because CGO_ENABLED=0 is not in the make file.
I can build a static binary if I use this command CGO_ENABLED=0 make clean && make build.
I can open a PR with these changes?
The text was updated successfully, but these errors were encountered: