From ae0628b30cdde8068dbefcbe6827f3339a9da088 Mon Sep 17 00:00:00 2001 From: Sahnvour Date: Sun, 13 Oct 2019 13:44:33 +0200 Subject: [PATCH] ci: use parallel msbuild.exe processes for faster building on windows --- ci/azure/windows_script.bat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/azure/windows_script.bat b/ci/azure/windows_script.bat index 5c44abcbe1..57140e19b5 100644 --- a/ci/azure/windows_script.bat +++ b/ci/azure/windows_script.bat @@ -19,7 +19,7 @@ mkdir %ZIGBUILDDIR% cd %ZIGBUILDDIR% REM Here we use MinSizeRel instead of Release to work around https://github.com/ziglang/zig/issues/3024 cmake.exe .. -Thost=x64 -G"Visual Studio 16 2019" -A x64 "-DCMAKE_INSTALL_PREFIX=%ZIGINSTALLDIR%" "-DCMAKE_PREFIX_PATH=%ZIGPREFIXPATH%" -DCMAKE_BUILD_TYPE=MinSizeRel || exit /b -msbuild /p:Configuration=MinSizeRel INSTALL.vcxproj || exit /b +msbuild /maxcpucount /p:Configuration=MinSizeRel INSTALL.vcxproj || exit /b "%ZIGINSTALLDIR%\bin\zig.exe" build test || exit /b