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
Something has happened to our CI testing so that older versions of Go can't use gRPC.
This quick one-liner will show that the latest gRPC module doesn't install properly into the official Go Docker images before Go version 1.13: for GOVERSION in `seq 7 16` ; do echo ====== GO VERSION 1.$GOVERSION ====== && docker run --rm -it golang:1.$GOVERSION bash -c "go get -u google.golang.org/grpc"; done
There is special logic in our build-script.sh to skip gRPC for 1.7 and 1.8, and we also do a special build for Go 1.9. Perhaps this is where we can fix this, after researching whether or not gRPC can run on earlier versions of Go anymore.
The text was updated successfully, but these errors were encountered:
Something has happened to our CI testing so that older versions of Go can't use gRPC.
This quick one-liner will show that the latest gRPC module doesn't install properly into the official Go Docker images before Go version 1.13:
for GOVERSION in `seq 7 16` ; do echo ====== GO VERSION 1.$GOVERSION ====== && docker run --rm -it golang:1.$GOVERSION bash -c "go get -u google.golang.org/grpc"; done
There is special logic in our build-script.sh to skip gRPC for 1.7 and 1.8, and we also do a special build for Go 1.9. Perhaps this is where we can fix this, after researching whether or not gRPC can run on earlier versions of Go anymore.
The text was updated successfully, but these errors were encountered: