Add build step for win64 msys2/mingw

This commit is contained in:
Aydyn Tairov
2023-07-29 23:55:23 +01:00
parent f61807d6ea
commit bc36686786
2 changed files with 29 additions and 1 deletions
+28
View File
@@ -94,3 +94,31 @@ jobs:
id: build_msvc
run: |
.\build_msvc.bat
windows-latest-mingw:
runs-on: windows-latest
defaults:
run:
shell: msys2 {0}
strategy:
matrix:
include:
- { sys: mingw64, env: x86_64 }
steps:
- name: Checkout
id: checkout
uses: actions/checkout@v3
- uses: msys2/setup-msys2@v2
id: setup-msys2
with:
msystem: ${{ matrix.sys }}
install: mingw-w64-${{matrix.env}}-gcc make
- name: Build ${{ matrix.sys }} ${{ matrix.env }}
id: build_mingw
run: |
make win64