35 строки
1.1 KiB
Bash
Executable File
35 строки
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
set -exu -o pipefail
|
|
[[ -f /VERSION ]] && cat /VERSION
|
|
|
|
cd github
|
|
|
|
export GOPATH="${HOME}/gopath"
|
|
pushd grpc-go/interop/xds/client
|
|
branch=$(git branch --all --no-color --contains "${KOKORO_GITHUB_COMMIT}" \
|
|
| grep -v HEAD | head -1)
|
|
shopt -s extglob
|
|
branch="${branch//[[:space:]]}"
|
|
branch="${branch##remotes/origin/}"
|
|
shopt -u extglob
|
|
go build
|
|
popd
|
|
|
|
git clone -b "${branch}" --single-branch --depth=1 https://github.com/grpc/grpc.git
|
|
|
|
grpc/tools/run_tests/helper_scripts/prep_xds.sh
|
|
GRPC_GO_LOG_VERBOSITY_LEVEL=99 GRPC_GO_LOG_SEVERITY_LEVEL=info \
|
|
python3 grpc/tools/run_tests/run_xds_tests.py \
|
|
--test_case=all \
|
|
--project_id=grpc-testing \
|
|
--source_image=projects/grpc-testing/global/images/xds-test-server \
|
|
--path_to_server_binary=/java_server/grpc-java/interop-testing/build/install/grpc-interop-testing/bin/xds-test-server \
|
|
--gcp_suffix=$(date '+%s') \
|
|
--verbose \
|
|
--client_cmd="grpc-go/interop/xds/client/client \
|
|
--server=xds:///{server_uri} \
|
|
--stats_port={stats_port} \
|
|
--qps={qps} \
|
|
{fail_on_failed_rpc}"
|