diff options
author | Jan Tattermusch <jtattermusch@google.com> | 2015-06-03 16:32:13 -0700 |
---|---|---|
committer | Jan Tattermusch <jtattermusch@google.com> | 2015-06-03 16:32:13 -0700 |
commit | a959e64d0d214e8ef4caaee779af9e6a6c2dc562 (patch) | |
tree | 70b4f56042b4814b52bcbeef66b62646b0e9c136 | |
parent | 9bc61bd763d188da1a6e53be26946053325dae3e (diff) |
fix jenkins build on windows
-rwxr-xr-x | tools/jenkins/run_jenkins.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/jenkins/run_jenkins.sh b/tools/jenkins/run_jenkins.sh index 417cf92565..8afaa91ea7 100755 --- a/tools/jenkins/run_jenkins.sh +++ b/tools/jenkins/run_jenkins.sh @@ -50,6 +50,9 @@ elif [ "$platform" == "windows" ] then echo "building $language on Windows" + # Prevent msbuild from picking up "platform" env variable, which would break the build + unset platform + # TODO(jtattermusch): integrate nuget restore in a nicer way. /cygdrive/c/nuget/nuget.exe restore vsprojects/grpc.sln /cygdrive/c/nuget/nuget.exe restore src/csharp/Grpc.sln |