Merge pull request #175 from tairov/ci-mingw

Add build step for win64 msys2/mingw
This commit is contained in:
Andrej
2023-08-01 09:02:35 -07:00
committed by GitHub
+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