28 lines
1.1 KiB
Batchfile
28 lines
1.1 KiB
Batchfile
@echo on
|
|
SET "SRCROOT=%cd%"
|
|
SET "PREVPATH=%PATH%"
|
|
SET "PREVMSYSEM=%MSYSTEM%"
|
|
|
|
set "PATH=%CD:~0,2%\msys64\usr\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem"
|
|
SET "MSYSTEM=MINGW64"
|
|
bash -lc "cd ${SRCROOT} && ci/azure/windows_install" || exit /b
|
|
SET "PATH=%PREVPATH%"
|
|
SET "MSYSTEM=%PREVMSYSTEM%"
|
|
|
|
SET "ZIGBUILDDIR=%SRCROOT%\build"
|
|
SET "ZIGINSTALLDIR=%ZIGBUILDDIR%\release"
|
|
SET "ZIGPREFIXPATH=%SRCROOT%\llvm+clang-7.0.0-win64-msvc-release"
|
|
|
|
call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x64
|
|
|
|
mkdir %ZIGBUILDDIR%
|
|
cd %ZIGBUILDDIR%
|
|
cmake.exe .. -Thost=x64 -G"Visual Studio 15 2017 Win64" "-DCMAKE_INSTALL_PREFIX=%ZIGINSTALLDIR%" "-DCMAKE_PREFIX_PATH=%ZIGPREFIXPATH%" -DCMAKE_BUILD_TYPE=Release || exit /b
|
|
msbuild /p:Configuration=Release INSTALL.vcxproj || exit /b
|
|
|
|
"%ZIGINSTALLDIR%\bin\zig.exe" build --build-file ..\build.zig test || exit /b
|
|
|
|
set "PATH=%CD:~0,2%\msys64\usr\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem"
|
|
SET "MSYSTEM=MINGW64"
|
|
bash -lc "cd ${SRCROOT} && ci/azure/windows_upload" || exit /b
|