Remove libgtk dependency #595
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, pull_request] | |
jobs: | |
build: | |
name: ${{ matrix.config.name }} | |
runs-on: ${{ matrix.config.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
config: | |
- { | |
name: "macOS", | |
os: macos-12, | |
deps_cmdline: "brew install fluidsynth freeimage ftgl glm lua mpg123 sfml wxwidgets" | |
} | |
- { | |
name: "Linux GCC", | |
os: ubuntu-24.04, | |
deps_cmdline: "sudo apt install \ | |
libfluidsynth-dev libfreeimage-dev libwebkit2gtk-4.1-dev \ | |
libglm-dev libgtk-3-dev liblua5.3-dev libmpg123-dev libsfml-dev \ | |
libwxgtk3.2-dev libwxgtk-webview3.2-dev" | |
} | |
- { | |
name: "Linux Clang", | |
os: ubuntu-24.04, | |
extra_options: "-DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++", | |
deps_cmdline: "sudo apt install \ | |
libfluidsynth-dev libfreeimage-dev libwebkit2gtk-4.1-dev \ | |
libglm-dev libgtk-3-dev liblua5.3-dev libmpg123-dev libsfml-dev \ | |
libwxgtk3.2-dev libwxgtk-webview3.2-dev" | |
} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Dependencies | |
shell: bash | |
run: | | |
if [[ ! -z "${{ matrix.config.deps_cmdline }}" ]]; then | |
eval ${{ matrix.config.deps_cmdline }} | |
fi | |
- name: Configure | |
shell: bash | |
run: | | |
mkdir build | |
cmake -B build ${{ matrix.config.extra_options }} . | |
- name: Build | |
shell: bash | |
run: | | |
export MAKEFLAGS=--keep-going | |
cmake --build build --parallel 3 |