Skip to content

Commit

Permalink
msys2 CI
Browse files Browse the repository at this point in the history
  • Loading branch information
oschonrock committed Dec 17, 2024
1 parent 6b4293c commit 10b8d1d
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/msys2.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: MSYS2-CI

on: [push, pull_request]

jobs:
windows-mingw:
name: ${{ matrix.sys }}
runs-on: windows-latest
defaults:
run:
shell: msys2 {0}
strategy:
fail-fast: false
matrix:
sys: [ UCRT64, CLANG64, MINGW64, MINGW32 ]
steps:
- name: checkout code
uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: install msys2
uses: msys2/setup-msys2@v2
with:
msystem: ${{matrix.sys}}
update: true
- name: Configure
run: cmake -S . -B build -DCMAKE_BUILD_TYPE=debug
- name: Build
run: cmake --build build

0 comments on commit 10b8d1d

Please sign in to comment.