Skip to content

Commit

Permalink
Add mingw msys2 workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Sep 5, 2023
1 parent 3d445cc commit b2aca1e
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions .github/workflows/mingw-w64-msys2.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: MSYS2 MinGW-w64 Windows 64bit Build

on:
push:
branches:
- release
- devel
paths:
- 'tiny_gltf.*'
- 'CMakeLists.txt'
- '.github/workflows/mingw-w64-msys2.yml'
pull_request:
workflow_dispatch:

jobs:
mingw-w64-msys2-build:
name: MSYS2 MinGW-w64 Windows Build
runs-on: windows-latest
defaults:
run:
shell: msys2 {0}
steps:
- uses: actions/checkout@v3

- name: Install core & build dependencies
uses: msys2/setup-msys2@v2
with:
msystem: UCRT64
install: base-devel
pacboy: >-
cc:p cmake:p ninja:p
update: true
release: false

- name: Configure
run: |
cmake \
-G"Ninja" \
-S . \
-B build
- name: Build
run: |
cmake --build build

0 comments on commit b2aca1e

Please sign in to comment.