buildscripts: update xds test server arg (#6816)

This commit is contained in:
Eric Gribkoff 2020-03-11 13:20:30 -07:00 committed by GitHub
parent 46eac47efc
commit 3b8e36358c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 5 deletions

View File

@ -2,4 +2,4 @@
# Location of the continuous shell script in repository.
build_file: "grpc-java/buildscripts/kokoro/xds.sh"
timeout_mins: 60
timeout_mins: 90

View File

@ -5,9 +5,6 @@ if [[ -f /VERSION ]]; then
cat /VERSION
fi
sudo apt-get install -y python3-pip
sudo python3 -m pip install grpcio grpcio-tools google-api-python-client google-auth-httplib2
cd github
pushd grpc-java/interop-testing
@ -22,4 +19,7 @@ python3 grpc/tools/run_tests/run_xds_tests.py \
--project_id=grpc-testing \
--gcp_suffix=$(date '+%s') \
--verbose \
--client_cmd='grpc-java/interop-testing/build/install/grpc-interop-testing/bin/xds-test-client --server=xds-experimental:///{service_host}:{service_port} --stats_port={stats_port} --qps={qps}'
--client_cmd="grpc-java/interop-testing/build/install/grpc-interop-testing/bin/xds-test-client \
--server=xds-experimental:///{server_uri} \
--stats_port={stats_port} \
--qps={qps}"