aboutsummaryrefslogtreecommitdiff
path: root/ci/azure/windows_msvc_script.bat
AgeCommit message (Collapse)Author
2022-02-16ci: use zig-bootstrap for windowsAndrew Kelley
2022-02-09Revert "ci: azure: split build-and-test step"Andrew Kelley
This reverts commit 846eb701821a3f2af514bbad770478e3276b2d89. This did not properly translate the upload portion of the CI script to powershell which broke our CI pipeline.
2022-02-08ci: azure: split build-and-test stepHadrien Dorio
replace the .bat script by a pwsh script
2021-10-01ci: update windows tarballs to llvm 13Andrew Kelley
2021-09-30Merge remote-tracking branch 'origin/master' into llvm13Andrew Kelley
2021-09-24Spelling corrections (#9833)Josh Soref
Signed-off-by: Josh Soref <jsoref@users.noreply.github.com> Co-authored-by: Josh Soref <jsoref@users.noreply.github.com>
2021-08-15update CI scripts to llvm 13 rc1Andrew Kelley
2021-07-28CI: enable stage2 behavior test coverageAndrew Kelley
2021-05-29ci: update x86_64-linux, aarch64-linux, and windows tarballsAndrew Kelley
to llvm 12.0.1-rc1, and -DLLVM_ENABLE_ZLIB=FORCE_ON
2021-04-30Azure CI: Test std.* and the rest separatelyFrank Denis
On CI, we have been running into OOM issues when running the test suite on Windows for quite some time. Unfortunately, we are very close to having the same issues on Linux as well. Some additional comptime work immediately makes these builds fail as well. Add a new `test-toolchain` step, that tests everything except `std.*` and documentation. On CI, call `test-toolchain`, `test-std` and `docs` separately instead of the `test` big hammer that emcompasses all of them. Change the special case we made for Windows to the same code as other platforms. This is a stopgap measure that stage2 will eventually make useless. Until then, it gives us some headroom. Change `linux_script` by the way to only output the log of failing steps. This shrinks the Linux CI log from a bazilion lines down to something more humanely manageable.
2021-04-15ci: windows: update to llvm 12 msvc tarballAndrew Kelley
2021-04-14ci: windows: try using zig-bootstrap to build zigAndrew Kelley
2021-01-04ci: omit stage2 backend from stage1 on WindowsAndrew Kelley
to avoid out-of-memory on the CI runs.
2021-01-01ci: fix `git describe`Jay Petacat
git describe is used for version string creation, but it had to be reverted in commit 69da6ba because it was broken in CI builds. Azure Pipelines and Drone perform shallow clones by default. This change reconfigures them to fetch history and tags. It adds tens of seconds, which is negligible compared to overall build and test time. Related: #6466, #6509, #7601
2020-10-22ci: fix regression from not building docsAndrew Kelley
0e4f7a8e3f94f0e799280d7e7836d67d776cbca6 forgot to build the docs, causing CI failures
2020-10-21MSVC CI: run tests individually (#6751)Frank Denis
This slightly reduces the amount of peak RSS needed, buying us more time until stage2 is shipping.
2020-10-12ci: update llvm 10 => 11Andrew Kelley
2020-09-08ci: skip non native builds on windows to save timeAndrew Kelley
2020-08-31ci: skip compile error tests on WindowsAndrew Kelley
We're up against the 6 hour limit so this is a time-saving workaround. Compile error tests are generally not OS-specific so the coverage from the other platforms should be sufficient.
2020-04-12added CI job for mingwemekoi