appveyor.bat 995 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
setlocal

IF %language%==cpp GOTO build_cpp
IF %language%==csharp GOTO build_csharp

echo Unsupported language %language%. Exiting.
goto :error

:build_cpp
echo Building C++
mkdir build_msvc
cd build_msvc
13
cmake -G "%generator%" -Dprotobuf_BUILD_SHARED_LIBS=%BUILD_DLL% -Dprotobuf_UNICODE=%UNICODE% ../cmake
14 15 16 17 18 19 20 21
msbuild protobuf.sln /p:Platform=%vcplatform% /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" || goto error
cd %configuration%
tests.exe || goto error
goto :EOF

:build_csharp
echo Building C#
cd csharp\src
22 23 24
REM The platform environment variable is implicitly used by msbuild;
REM we don't want it.
set platform=
25
dotnet restore
26
dotnet build -c %configuration% || goto error
27 28

echo Testing C#
29 30
dotnet run -c %configuration% -f netcoreapp1.0 -p Google.Protobuf.Test\Google.Protobuf.Test.csproj || goto error
dotnet run -c %configuration% -f net451 -p Google.Protobuf.Test\Google.Protobuf.Test.csproj || goto error
31

32 33 34 35
goto :EOF

:error
echo Failed!
36
EXIT /b %ERRORLEVEL%