-
Notifications
You must be signed in to change notification settings - Fork 20
32 lines (31 loc) · 1.15 KB
/
windows.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
name: Windows
on: [push]
jobs:
msvc:
runs-on: windows-2022
steps:
- uses: actions/checkout@v3
- name: Configure
run: cmake -Bbuild
- name: Build (Debug)
run: cmake --build build --config Debug
- name: Build (Release)
run: cmake --build build --config Release
- name: Configure (UWP)
run: cmake -Bbuild-uwp -DCMAKE_SYSTEM_NAME=WindowsStore '-DCMAKE_SYSTEM_VERSION=10.0'
- name: Build (UWP, Debug)
run: cmake --build build-uwp --config Debug
- name: Build (UWP, Release)
run: cmake --build build-uwp --config Release
mingw-sdl:
runs-on: [ubuntu-latest]
container:
image: registry.fedoraproject.org/fedora-minimal:37
steps:
- name: Install dependencies
run: microdnf install -y cmake ninja-build mingw64-pkg-config mingw64-libvorbis mingw64-SDL2 mingw64-fontconfig mingw64-libwebp mingw64-dlfcn mingw64-openal-soft mingw32-nsis mingw64-gcc-c++ tar gzip
- uses: actions/checkout@v3
- name: Build with CMake and GCC
run: |
mingw64-cmake -Bbuild-windows -GNinja -DCMAKE_BUILD_TYPE=Debug -DBUILD_SHARED_LIBS=0 -DJNGL_SDL2=1
ninja -Cbuild-windows