mirror of
https://github.com/ziglang/zig.git
synced 2025-12-29 17:43:17 +00:00
This reverts commit 846eb701821a3f2af514bbad770478e3276b2d89. This did not properly translate the upload portion of the CI script to powershell which broke our CI pipeline.
40 lines
1.7 KiB
Batchfile
40 lines
1.7 KiB
Batchfile
@echo on
|
|
SET "SRCROOT=%cd%"
|
|
SET "PREVPATH=%PATH%"
|
|
SET "PREVMSYSTEM=%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_msvc_install" || exit /b
|
|
SET "PATH=%PREVPATH%"
|
|
SET "MSYSTEM=%PREVMSYSTEM%"
|
|
|
|
SET "ZIGBUILDDIR=%SRCROOT%\build"
|
|
SET "ZIGINSTALLDIR=%ZIGBUILDDIR%\dist"
|
|
SET "ZIGPREFIXPATH=%SRCROOT%\llvm+clang+lld-13.0.0-x86_64-windows-msvc-release-mt"
|
|
|
|
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x64
|
|
|
|
REM Make the `zig version` number consistent.
|
|
REM This will affect the cmake command below.
|
|
git.exe config core.abbrev 9
|
|
git.exe fetch --unshallow
|
|
git.exe fetch --tags
|
|
|
|
mkdir %ZIGBUILDDIR%
|
|
cd %ZIGBUILDDIR%
|
|
cmake.exe .. -Thost=x64 -G"Visual Studio 16 2019" -A x64 "-DCMAKE_INSTALL_PREFIX=%ZIGINSTALLDIR%" "-DCMAKE_PREFIX_PATH=%ZIGPREFIXPATH%" -DCMAKE_BUILD_TYPE=Release -DZIG_OMIT_STAGE2=ON || exit /b
|
|
msbuild /maxcpucount /p:Configuration=Release INSTALL.vcxproj || exit /b
|
|
|
|
REM Sadly, stage2 is omitted from this build to save memory on the CI server. Once self-hosted is
|
|
REM built with itself and does not gobble as much memory, we can enable these tests.
|
|
REM "%ZIGINSTALLDIR%\bin\zig.exe" test "..\test\behavior.zig" -fno-stage1 -fLLVM -I "..\test" || exit /b
|
|
|
|
"%ZIGINSTALLDIR%\bin\zig.exe" build test-toolchain -Dskip-non-native -Dskip-stage2-tests || exit /b
|
|
"%ZIGINSTALLDIR%\bin\zig.exe" build test-std -Dskip-non-native || exit /b
|
|
"%ZIGINSTALLDIR%\bin\zig.exe" build docs || 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
|