diff options
author | Jan Tattermusch <jtattermusch@google.com> | 2015-11-30 12:30:53 -0800 |
---|---|---|
committer | Jan Tattermusch <jtattermusch@google.com> | 2015-11-30 12:30:53 -0800 |
commit | 837865af401d2cd454ed18df66c38d7c97a9daba (patch) | |
tree | b57151e2a3b96ae784ddfaa438196310db70183d | |
parent | 945836eade7d8f12f6eb84bc209da13ae7c89b38 (diff) |
fixes to run_jenkins.sh script
-rwxr-xr-x | tools/jenkins/run_jenkins.sh | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/tools/jenkins/run_jenkins.sh b/tools/jenkins/run_jenkins.sh index 0e1af2a2a9..4bb6c39a1c 100755 --- a/tools/jenkins/run_jenkins.sh +++ b/tools/jenkins/run_jenkins.sh @@ -63,7 +63,7 @@ then # Prevent msbuild from picking up "platform" env variable, which would break the build unset platform - python tools/run_tests/run_tests.py -t -l $language -x report.xml $@ || true + python tools/run_tests/run_tests.py -t -l $language -c $config -x report.xml $@ || true elif [ "$platform" == "macos" ] then @@ -77,11 +77,6 @@ then MAKE=gmake ./tools/run_tests/run_tests.py -t -l $language -c $config -x report.xml $@ || true -elif [ "$platform" == "interop" ] -then - echo "building interop tests for language $language" - - ./tools/run_tests/run_interop_tests.py --use_docker -t -l $language --cloud_to_prod --server all || true else echo "Unknown platform $platform" exit 1 |