melonDS/.github/workflows/build-windows.yml

44 lines
1006 B
YAML
Raw Normal View History

2019-12-12 20:44:34 +00:00
name: CMake Build (Windows x86-64)
2020-03-21 22:35:43 +00:00
on:
push:
branches:
- master
pull_request:
branches:
- master
2019-12-12 20:44:34 +00:00
env:
BUILD_TYPE: Release
jobs:
build:
runs-on: windows-latest
defaults:
run:
shell: msys2 {0}
2019-12-12 20:44:34 +00:00
steps:
- uses: actions/checkout@v1
- uses: msys2/setup-msys2@v2
with:
msystem: MINGW64
update: true
2019-12-12 20:44:34 +00:00
- name: Install dependencies
run: pacman -Sq --noconfirm git pkgconf mingw-w64-x86_64-{cmake,SDL2,qt5-static,libslirp,libarchive,toolchain}
2019-12-12 20:44:34 +00:00
- name: Configure
working-directory: ${{runner.workspace}}
run: cmake -B build $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DBUILD_STATIC=ON -DCMAKE_PREFIX_PATH=C:/tools/msys64/mingw64/qt5-static
2019-12-12 20:44:34 +00:00
- name: Make
working-directory: ${{runner.workspace}}/build
run: cmake --build .
2019-12-13 03:06:57 +00:00
- uses: actions/upload-artifact@v1
with:
name: melonDS-windows-x86_64
path: ${{runner.workspace}}\build\melonDS.exe