Adding MacOS support in our run_jenkins script.

This commit is contained in:
Nicolas "Pixel" Noble 2015-07-09 03:34:22 +02:00
parent 1f8fc77d1a
commit 4853246ecb
1 changed files with 5 additions and 0 deletions

View File

@ -87,6 +87,11 @@ then
/cygdrive/c/nuget/nuget.exe restore src/csharp/Grpc.sln
python tools/run_tests/run_tests.py -t -l $language -x report.xml
elif [ "$platform" == "macos" ]
then
echo "building $language on MacOS"
./tools/run_tests/run_tests.py -t -l $language -c $config -x report.xml
else
echo "Unknown platform $platform"
exit 1