diff options
author | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2015-07-10 00:18:17 +0200 |
---|---|---|
committer | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2015-07-10 00:44:16 +0200 |
commit | 5eb80c91955e9e55fab14d1e7a656f01d4c46a67 (patch) | |
tree | 92c9dae3ec458d996cb4f40a3566526815d7e28b /tools/jenkins | |
parent | 7db30ebeab6db85da68cea2f5ba01c08d5d5dab5 (diff) |
Eating the error code from run_test.py, as Jenkins now uses report.xml fully.
Diffstat (limited to 'tools/jenkins')
-rwxr-xr-x | tools/jenkins/run_jenkins.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/jenkins/run_jenkins.sh b/tools/jenkins/run_jenkins.sh index 88476b55b1..16eb6bea6e 100755 --- a/tools/jenkins/run_jenkins.sh +++ b/tools/jenkins/run_jenkins.sh @@ -83,12 +83,12 @@ then /cygdrive/c/nuget/nuget.exe restore vsprojects/grpc.sln /cygdrive/c/nuget/nuget.exe restore src/csharp/Grpc.sln - python tools/run_tests/run_tests.py -t -l $language -x report.xml + python tools/run_tests/run_tests.py -t -l $language -x report.xml || true elif [ "$platform" == "macos" ] then echo "building $language on MacOS" - ./tools/run_tests/run_tests.py -t -l $language -c $config -x report.xml + ./tools/run_tests/run_tests.py -t -l $language -c $config -x report.xml || true else echo "Unknown platform $platform" exit 1 |