Clone test-infra repo instead of fetching commit. (#27677)

* Clone test-infra repo instead of fetching commit.

Partially reverting https://github.com/grpc/grpc/pull/27675.

* Log commit from test-infra repo.
pull/27680/head
Paulo Castello da Costa 3 years ago committed by GitHub
parent fa43eadb8f
commit 0c6586523f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      tools/internal_ci/linux/grpc_e2e_performance_gke.sh
  2. 8
      tools/internal_ci/linux/grpc_e2e_performance_v2.sh

@ -67,10 +67,10 @@ go get "golang.org/dl/${TEST_INFRA_GOVERSION}"
# Fetch test-infra repository and build all tools.
# Note: Submodules are not required for tools build.
git init ../test-infra
pushd ../test-infra
git fetch --depth 1 https://github.com/grpc/test-infra.git
git reset --hard FETCH_HEAD
pushd ..
git clone --depth 1 https://github.com/grpc/test-infra.git
cd test-infra
git log -1 --oneline
make GOCMD="${TEST_INFRA_GOVERSION}" all-tools
popd

@ -65,10 +65,10 @@ go get "golang.org/dl/${TEST_INFRA_GOVERSION}"
# Fetch test-infra repository and build all tools.
# Note: Submodules are not required for tools build.
git init ../test-infra
pushd ../test-infra
git fetch --depth 1 https://github.com/grpc/test-infra.git
git reset --hard FETCH_HEAD
pushd ..
git clone --depth 1 https://github.com/grpc/test-infra.git
cd test-infra
git log -1 --oneline
make GOCMD="${TEST_INFRA_GOVERSION}" all-tools
popd

Loading…
Cancel
Save