diff options
author | Thorbjørn Lindeijer <bjorn@lindeijer.nl> | 2024-05-08 13:54:23 +0200 |
---|---|---|
committer | Thorbjørn Lindeijer <bjorn@lindeijer.nl> | 2024-05-08 14:09:19 +0200 |
commit | 6c1b03e1f5a8d29de5a91ca3c0896a2d83b72e43 (patch) | |
tree | ca1e39f7d36c1426897a00595fbcb9c7ce688d55 /.appveyor.yml | |
parent | 3f5377d6810de412c8963414f66f472fc740cad9 (diff) | |
download | mana-6c1b03e1f5a8d29de5a91ca3c0896a2d83b72e43.tar.gz mana-6c1b03e1f5a8d29de5a91ca3c0896a2d83b72e43.tar.bz2 mana-6c1b03e1f5a8d29de5a91ca3c0896a2d83b72e43.tar.xz mana-6c1b03e1f5a8d29de5a91ca3c0896a2d83b72e43.zip |
CI: Added MSYS2 build on AppVeyor
Makes a release build and publishes the Windows installer as artifact.
Diffstat (limited to '.appveyor.yml')
-rw-r--r-- | .appveyor.yml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/.appveyor.yml b/.appveyor.yml new file mode 100644 index 00000000..22124121 --- /dev/null +++ b/.appveyor.yml @@ -0,0 +1,15 @@ +version: 0.7.0.{build} +image: Visual Studio 2022 +environment: + CHERE_INVOKING: yes # Preserve the current working directory + MSYSTEM: UCRT64 +install: + - git submodule update --init +build_script: +- cmd: | + C:\msys64\usr\bin\bash -lc "pacman --noconfirm -Syuu" + C:\msys64\usr\bin\bash -lc "pacman --noconfirm -Syuu" + C:\msys64\usr\bin\bash -lc "./packaging/msys2-build.sh" +artifacts: + - name: Installer + path: build/Mana-*-win64.exe |