Adding MacOS support in our run_jenkins script.
This commit is contained in:
parent
1f8fc77d1a
commit
4853246ecb
|
|
@ -87,6 +87,11 @@ then
|
||||||
/cygdrive/c/nuget/nuget.exe restore src/csharp/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
|
||||||
|
elif [ "$platform" == "macos" ]
|
||||||
|
then
|
||||||
|
echo "building $language on MacOS"
|
||||||
|
|
||||||
|
./tools/run_tests/run_tests.py -t -l $language -c $config -x report.xml
|
||||||
else
|
else
|
||||||
echo "Unknown platform $platform"
|
echo "Unknown platform $platform"
|
||||||
exit 1
|
exit 1
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue