switch to SDL3 #6106
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Continuous Integration | |
on: | |
push: | |
branches: [ master ] | |
tags: ['*'] | |
paths-ignore: ['**.md'] | |
pull_request: | |
branches: [ master ] | |
paths-ignore: ['**.md'] | |
workflow_dispatch: | |
jobs: | |
build: | |
name: ${{ matrix.config.name }} | |
runs-on: ${{ matrix.config.os }} | |
defaults: | |
run: | |
shell: ${{ matrix.config.shell }} | |
strategy: | |
fail-fast: false | |
matrix: | |
config: | |
- name: MSYS2 UCRT64 | |
os: windows-latest | |
compiler: gcc | |
shell: 'msys2 {0}' | |
msystem: ucrt64 | |
msys-env: mingw-w64-ucrt-x86_64 | |
steps: | |
- name: Install dependencies (Linux) | |
if: runner.os == 'Linux' | |
run: | | |
sudo apt-get update | |
sudo apt-get install \ | |
ninja-build \ | |
libsdl2-dev \ | |
libsdl2-net-dev \ | |
libopenal-dev \ | |
libebur128-dev \ | |
libsndfile1-dev \ | |
libfluidsynth-dev \ | |
libxmp-dev | |
- name: Install dependencies (macOS) | |
if: runner.os == 'macOS' | |
run: | | |
brew install \ | |
ninja \ | |
sdl2 \ | |
sdl2_net \ | |
openal-soft \ | |
libebur128 \ | |
libsndfile \ | |
fluid-synth \ | |
libxmp \ | |
yyjson | |
- name: Install dependencies (MSYS2) | |
if: matrix.config.shell == 'msys2 {0}' | |
uses: msys2/setup-msys2@v2 | |
with: | |
msystem: ${{ matrix.config.msystem }} | |
update: true | |
install: >- | |
diffutils | |
${{ matrix.config.msys-env }}-python-pip | |
${{ matrix.config.msys-env }}-gcc | |
${{ matrix.config.msys-env }}-cmake | |
${{ matrix.config.msys-env }}-ninja | |
${{ matrix.config.msys-env }}-sdl3 | |
${{ matrix.config.msys-env }}-SDL2_net | |
${{ matrix.config.msys-env }}-openal | |
${{ matrix.config.msys-env }}-libebur128 | |
${{ matrix.config.msys-env }}-libsndfile | |
${{ matrix.config.msys-env }}-fluidsynth | |
${{ matrix.config.msys-env }}-libxmp | |
- uses: actions/checkout@v4 | |
- name: Configure | |
env: | |
CC: ${{ matrix.config.compiler }} | |
run: | | |
cmake -B build -G Ninja -DCMAKE_BUILD_TYPE=Release \ | |
-DENABLE_WERROR=ON -DENABLE_HARDENING=ON -DENABLE_LTO=ON \ | |
${{ matrix.config.extra-options }} | |
- name: Build | |
run: cmake --build build | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.x' | |
- name: Test | |
if: github.event_name == 'workflow_dispatch' | |
run: | | |
cd demotest | |
pip install pyyaml joblib | |
python3 demotest --jobs 4 --port ../build/src/woof | |
- name: Install | |
run: | | |
cd build | |
cpack | |
- name: Upload Artifacts | |
if: runner.os == 'Windows' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: MSYS2-UCRT64 | |
path: build/*.zip |