visualboyadvance-m/.github/workflows/msys2-build.yml

37 lines
949 B
YAML
Raw Normal View History

2021-10-03 20:37:11 +00:00
name: MSYS2 Build
on: [push, pull_request]
jobs:
build:
runs-on: windows-latest
env:
MSYSTEM: CLANG64
2021-10-03 20:37:11 +00:00
defaults:
run:
shell: msys2 {0}
steps:
- uses: actions/checkout@v2
- uses: msys2/setup-msys2@v2
with:
2021-10-03 20:52:35 +00:00
msystem: CLANG64
2021-10-03 20:37:11 +00:00
install: >-
2021-10-03 21:01:51 +00:00
git
2021-10-03 20:37:11 +00:00
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: >-
"C:\Program Files\Git\bin\git.exe" submodule update --init --remote --recursive
run: >-
2021-10-03 20:37:11 +00:00
cmake -B build -G Ninja
- name: Build
run: ninja -C build
- name: Install
run: ninja -C build install