add github actions workflow

This commit is contained in:
Zach Bacon 2021-10-03 16:37:11 -04:00
parent dc24eac896
commit 0db7eab66c
No known key found for this signature in database
GPG Key ID: EB0E0FF1C62782D8
1 changed files with 31 additions and 0 deletions

31
.github/workflows/msys2-build.yml vendored Normal file
View File

@ -0,0 +1,31 @@
name: MSYS2 Build
on: [push, pull_request]
jobs:
build:
runs-on: windows-latest
defaults:
run:
shell: msys2 {0}
steps:
- uses: actions/checkout@v2
- uses: msys2/setup-msys2@v2
with:
install: >-
mingw-w64-clang-x86_64-toolchain
mingw-w64-clang-x86_64-pkg-config
mingw-w64-clang-x86_64-cmake
mingw-w64-clang-x86_64-ninja
mingw-w64-clang-x86_64-wxmsw3.1
mingw-w64-clang-x86_64-sfml
mingw-w64-clang-x86_64-SDL2
- name: Configure
run: >-
cmake -B build -G Ninja
- name: Build
run: ninja -C build
- name: Install
run: ninja -C build install