|
|
|
@ -36,19 +36,12 @@ set -e |
|
|
|
|
# to test instead of using "go get" to download from Github directly. |
|
|
|
|
git clone --recursive /var/local/jenkins/grpc-go src/google.golang.org/grpc |
|
|
|
|
|
|
|
|
|
# Get all gRPC Go dependencies |
|
|
|
|
(cd src/google.golang.org/grpc && go get -t .) |
|
|
|
|
|
|
|
|
|
# copy service account keys if available |
|
|
|
|
cp -r /var/local/jenkins/service_account $HOME || true |
|
|
|
|
|
|
|
|
|
# Get dependencies from GitHub |
|
|
|
|
# NOTE: once grpc-go dependencies change, this needs to be updated manually |
|
|
|
|
# but we don't expect this to happen any time soon. |
|
|
|
|
go get github.com/golang/protobuf/proto |
|
|
|
|
go get golang.org/x/net/context |
|
|
|
|
go get golang.org/x/net/trace |
|
|
|
|
go get golang.org/x/oauth2 |
|
|
|
|
go get golang.org/x/oauth2/google |
|
|
|
|
go get google.golang.org/cloud |
|
|
|
|
|
|
|
|
|
# Build the interop client and server |
|
|
|
|
(cd src/google.golang.org/grpc/interop/client && go install) |
|
|
|
|
(cd src/google.golang.org/grpc/interop/server && go install) |
|
|
|
|