Specify go version for infra build. (#26881)

This change depends on https://github.com/grpc/test-infra/pull/211.
pull/25318/merge
Paulo Castello da Costa 4 years ago committed by GitHub
parent dd4209e972
commit ce483be968
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 7
      tools/internal_ci/linux/grpc_e2e_performance_gke.sh
  2. 7
      tools/internal_ci/linux/grpc_e2e_performance_v2.sh

@ -57,11 +57,16 @@ DRIVER_POOL=drivers-ci
WORKER_POOL_8CORE=workers-8core-ci
WORKER_POOL_32CORE=workers-32core-ci
# Update go version.
TEST_INFRA_GOVERSION=go1.16.6
go get "golang.org/dl/${TEST_INFRA_GOVERSION}"
"${TEST_INFRA_GOVERSION}" download
# Clone test-infra repository to one upper level directory than grpc.
pushd ..
git clone --recursive https://github.com/grpc/test-infra.git
cd test-infra
make all-tools
make GOCMD="${TEST_INFRA_GOVERSION}" all-tools
popd
# Build test configurations.

@ -58,11 +58,16 @@ DRIVER_POOL=drivers-ci
WORKER_POOL_8CORE=workers-8core-ci
WORKER_POOL_32CORE=workers-32core-ci
# Update go version.
TEST_INFRA_GOVERSION=go1.16.6
go get "golang.org/dl/${TEST_INFRA_GOVERSION}"
"${TEST_INFRA_GOVERSION}" download
# Clone test-infra repository to one upper level directory than grpc.
pushd ..
git clone --recursive https://github.com/grpc/test-infra.git
cd test-infra
make all-tools
make GOCMD="${TEST_INFRA_GOVERSION}" all-tools
popd
# Build test configurations.

Loading…
Cancel
Save