Skip to content
Snippets Groups Projects
Commit 874aec02 authored by Jan Tattermusch's avatar Jan Tattermusch
Browse files

move nuget restore into prebuild step on windows

parent 48423fc8
No related branches found
No related tags found
No related merge requests found
...@@ -63,10 +63,6 @@ then ...@@ -63,10 +63,6 @@ then
# Prevent msbuild from picking up "platform" env variable, which would break the build # Prevent msbuild from picking up "platform" env variable, which would break the build
unset platform 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
python tools/run_tests/run_tests.py -t -l $language -x report.xml $@ || true python tools/run_tests/run_tests.py -t -l $language -x report.xml $@ || true
elif [ "$platform" == "macos" ] elif [ "$platform" == "macos" ]
......
@rem Performs nuget restore step for C/C++.
setlocal
@rem enter repo root
cd /d %~dp0\..\..
@rem Location of nuget.exe
set NUGET=C:\nuget\nuget.exe
if exists %NUGET% (
%NUGET% restore vsprojects/grpc.sln || goto :error
)
endlocal
goto :EOF
:error
echo Failed!
exit /b %errorlevel%
@rem Performs nuget restore step for C#.
setlocal
@rem enter repo root
cd /d %~dp0\..\..
@rem Location of nuget.exe
set NUGET=C:\nuget\nuget.exe
if exists %NUGET% (
%NUGET% restore vsprojects/grpc_csharp_ext.sln || goto :error
%NUGET% restore src/csharp/Grpc.sln || goto :error
)
endlocal
goto :EOF
:error
echo Failed!
exit /b %errorlevel%
...@@ -167,7 +167,10 @@ class CLanguage(object): ...@@ -167,7 +167,10 @@ class CLanguage(object):
return ['buildtests_%s' % self.make_target, 'tools_%s' % self.make_target] return ['buildtests_%s' % self.make_target, 'tools_%s' % self.make_target]
def pre_build_steps(self): def pre_build_steps(self):
return [] if self.platform == 'windows':
return [['tools\\run_tests\\pre_build_c.bat']]
else:
return []
def build_steps(self): def build_steps(self):
return [] return []
...@@ -322,7 +325,7 @@ class CSharpLanguage(object): ...@@ -322,7 +325,7 @@ class CSharpLanguage(object):
def pre_build_steps(self): def pre_build_steps(self):
if self.platform == 'windows': if self.platform == 'windows':
return [] return [['tools\\run_tests\\pre_build_csharp.bat']]
else: else:
return [['tools/run_tests/pre_build_csharp.sh']] return [['tools/run_tests/pre_build_csharp.sh']]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment