build32 #40
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build32 | |
on: | |
workflow_dispatch: | |
jobs: | |
build32: | |
runs-on: windows-latest | |
defaults: | |
run: | |
shell: msys2 {0} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: jeremyd2019/setup-msys2@v2_build32 | |
with: | |
msystem: MINGW32 | |
install: tar mingw-w64-x86_64-7zip mingw-w64-i686-xz mingw-w64-x86_64-zstd | |
update: true | |
bitness: 32 | |
- name: Install msys2-runtime-3.3 | |
continue-on-error: true | |
run: | | |
exec pacman --noconfirm --noprogressbar -S --needed msys2-runtime-3.3 | |
- name: Build | |
run: | | |
bash -x make-msys2-installer | |
sha256sum.exe msys2-* | tee msys2-checksums.txt | |
mkdir artifacts | |
mv msys2-* artifacts | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: output | |
path: artifacts/ |