authorgravatar for sahnvour@pm.meSahnvour <sahnvour@pm.me> 2019-10-13 13:44:33+02:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2019-10-13 11:02:21-04:00
logae0628b30cdde8068dbefcbe6827f3339a9da088
treecb0364d0f2aaa526768152f4cdd6bfebbf4451cc
parent8b45921664c8f679c8154b45add84f84e3ec8128

ci: use parallel msbuild.exe processes for faster building on windows


1 files changed, 1 insertions(+), 1 deletions(-)

ci/azure/windows_script.bat+1-1
...@@ -19,7 +19,7 @@ mkdir %ZIGBUILDDIR%...@@ -19,7 +19,7 @@ mkdir %ZIGBUILDDIR%
19cd %ZIGBUILDDIR%19cd %ZIGBUILDDIR%
20REM Here we use MinSizeRel instead of Release to work around https://github.com/ziglang/zig/issues/302420REM Here we use MinSizeRel instead of Release to work around https://github.com/ziglang/zig/issues/3024
21cmake.exe .. -Thost=x64 -G"Visual Studio 16 2019" -A x64 "-DCMAKE_INSTALL_PREFIX=%ZIGINSTALLDIR%" "-DCMAKE_PREFIX_PATH=%ZIGPREFIXPATH%" -DCMAKE_BUILD_TYPE=MinSizeRel || exit /b21cmake.exe .. -Thost=x64 -G"Visual Studio 16 2019" -A x64 "-DCMAKE_INSTALL_PREFIX=%ZIGINSTALLDIR%" "-DCMAKE_PREFIX_PATH=%ZIGPREFIXPATH%" -DCMAKE_BUILD_TYPE=MinSizeRel || exit /b
22msbuild /p:Configuration=MinSizeRel INSTALL.vcxproj || exit /b22msbuild /maxcpucount /p:Configuration=MinSizeRel INSTALL.vcxproj || exit /b
2323
24"%ZIGINSTALLDIR%\bin\zig.exe" build test || exit /b24"%ZIGINSTALLDIR%\bin\zig.exe" build test || exit /b
2525