diff options
author | Adele Zhou <adelez@adelez2.mtv.corp.google.com> | 2016-08-30 10:25:04 -0700 |
---|---|---|
committer | Adele Zhou <adelez@adelez2.mtv.corp.google.com> | 2016-08-30 10:25:04 -0700 |
commit | 96ace25a83a032ef7fab170b4a6c0d33c3c02ffc (patch) | |
tree | aa1e2a8b1cd23fc57f94c7dc5ce09d277ad94179 /tools | |
parent | c4b61e24b351fad7aac82e1be112a19980b068f7 (diff) |
Fix full cloud to prod
Diffstat (limited to 'tools')
-rw-r--r--[-rwxr-xr-x] | tools/jenkins/run_full_cloud_prod.sh (renamed from tools/jenkins/run_full_interop.sh) | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/tools/jenkins/run_full_interop.sh b/tools/jenkins/run_full_cloud_prod.sh index a82da1cb68..ea51b50066 100755..100644 --- a/tools/jenkins/run_full_interop.sh +++ b/tools/jenkins/run_full_cloud_prod.sh @@ -31,7 +31,14 @@ # This script is invoked by Jenkins and runs interop test suite. set -ex +export LANG=en_US.UTF-8 + # Enter the gRPC repo root cd $(dirname $0)/../.. -tools/run_tests/run_interop_tests.py -l all -s all --cloud_to_prod --cloud_to_prod_auth --prod_servers default cloud_gateway gateway_v2 cloud_gateway_v2 gateway_v4 cloud_gateway_v4 --use_docker --http2_interop -t -j 12 $@ || true +tools/run_tests/run_interop_tests.py \ + -l all \ + --cloud_to_prod \ + --cloud_to_prod_auth \ + --prod_servers default cloud_gateway gateway_v4 cloud_gateway_v4 \ + --use_docker -t -j 12 $@ || true |