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
I was attempting to compile go from source using the latest HEAD. But I could not get the compilation to complete because it required a minimum version higher than the one specified in go.mod.
go mod specifies go1.11 as the version that the source builds on, but while attempting a build, it fails. I was attempting a build using go1.14 which was higher than the minimum version. Using go1.17 resolved the error and completed the build successfully.
git bisect identified #3259 as the first bad commit for go1.17.
PS : I was attempting to build using go1.14 on 5c547ed. I am not sure whether there are other commits that raise the required version between go1.11 and go1.14.
I was attempting to compile go from source using the latest HEAD. But I could not get the compilation to complete because it required a minimum version higher than the one specified in
go.mod
.hub/go.mod
Line 3 in 5c547ed
go mod
specifiesgo1.11
as the version that the source builds on, but while attempting a build, it fails. I was attempting a build usinggo1.14
which was higher than the minimum version. Usinggo1.17
resolved the error and completed the build successfully.Command attempted:
make bin/hub
What happened:
Steps to Reproduce
use any go version < go1.17.
git clone https://github.com/mislav/hub
make bin/hub
I can create a pull request if this is a valid bug and the version in
go.mod
needs updating.The text was updated successfully, but these errors were encountered: