visualboyadvance-m/.github/workflows/msys2-build.yml
Workflow config file is invalid. Please check your config file: yaml: unmarshal errors: line 31: mapping key "run" already defined at line 29

37 lines
949 B
YAML

name: MSYS2 Build
on: [push, pull_request]
jobs:
build:
runs-on: windows-latest
env:
MSYSTEM: CLANG64
defaults:
run:
shell: msys2 {0}
steps:
- uses: actions/checkout@v2
- uses: msys2/setup-msys2@v2
with:
msystem: CLANG64
install: >-
git
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: >-
cmake -B build -G Ninja
- name: Build
run: ninja -C build
- name: Install
run: ninja -C build install