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
This PR breaks all users who have an up-to-date version of go on their build hosts. One can fetch older Go versions and call them as e.g. go1.18 build ..., which would in theory solve the problem here, but it doesn't work because the Makefile doesn't parameterize calls to the go tool.
An alternative is in the build check, to try go1.18 in the install when go is the wrong major version (and otherwise report an error, and tell the user to run go1.18
To be clear, these are temporary hacks, and cannot be relied upon. Osmosis must build and run successfully with the latest major version of Go. Whatever prevents that is a bug that must be fixed.
Cref: #3634
This PR breaks all users who have an up-to-date version of
go
on their build hosts. One can fetch older Go versions and call them as e.g.go1.18 build ...
, which would in theory solve the problem here, but it doesn't work because the Makefile doesn't parameterize calls to thego
tool.Quick fix would be
with equivalent changes (
go
→${GO}
) throughout the file.Originally posted by @08d2 in #3634 (comment)
The text was updated successfully, but these errors were encountered: