mirror of
https://github.com/ZDoom/ZMusic.git
synced 2025-01-31 04:40:51 +00:00
519b76b6e7
* fix warnings * add upload artifacts step (disabled by default because of warnings it reported on every symlink inside installation directory)
95 lines
3.1 KiB
YAML
95 lines
3.1 KiB
YAML
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: Visual Studio - Release
|
|
os: windows-latest
|
|
build_type: Release
|
|
|
|
- name: Visual Studio - Debug
|
|
os: windows-latest
|
|
build_type: Debug
|
|
|
|
- name: macOS Clang - Dynamic Deps
|
|
os: macos-latest
|
|
build_type: Release
|
|
|
|
- name: macOS Clang - Static Deps
|
|
os: macos-latest
|
|
build_type: Release
|
|
cmake_options: -DDYN_FLUIDSYNTH=OFF -DDYN_MPG123=OFF -DDYN_SNDFILE=OFF
|
|
deps_cmd: brew install libsndfile mpg123
|
|
|
|
- name: Linux GCC - Dynamic Deps
|
|
os: ubuntu-latest
|
|
build_type: Release
|
|
|
|
- name: Linux GCC - Static Deps
|
|
os: ubuntu-latest
|
|
build_type: Release
|
|
cmake_options: -DDYN_FLUIDSYNTH=OFF -DDYN_MPG123=OFF -DDYN_SNDFILE=OFF
|
|
deps_cmd: sudo apt update && sudo apt install libasound2-dev libglib2.0-dev libmpg123-dev libsndfile1-dev
|
|
|
|
- name: Linux Clang - Dynamic Deps
|
|
os: ubuntu-latest
|
|
build_type: Release
|
|
cmake_options: -DCMAKE_C_COMPILER=/usr/bin/clang -DCMAKE_CXX_COMPILER=/usr/bin/clang++
|
|
|
|
- name: Linux Clang - Static Deps
|
|
os: ubuntu-latest
|
|
build_type: Release
|
|
cmake_options: -DCMAKE_C_COMPILER=/usr/bin/clang -DCMAKE_CXX_COMPILER=/usr/bin/clang++ -DDYN_FLUIDSYNTH=OFF -DDYN_MPG123=OFF -DDYN_SNDFILE=OFF
|
|
deps_cmd: sudo apt update && sudo apt install libasound2-dev libglib2.0-dev libmpg123-dev libsndfile1-dev
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Install Dependencies
|
|
shell: bash
|
|
run: |
|
|
${{ matrix.config.deps_cmd }}
|
|
|
|
- name: Configure
|
|
shell: bash
|
|
run: |
|
|
cmake -B build -DCMAKE_BUILD_TYPE=${{ matrix.config.build_type }} -DCMAKE_INSTALL_PREFIX=./build_install ${{ matrix.config.cmake_options }} .
|
|
|
|
- name: Build
|
|
shell: bash
|
|
run: |
|
|
export MAKEFLAGS=--keep-going
|
|
cmake --build build --target install --config ${{ matrix.config.build_type }} --parallel 3
|
|
|
|
- name: Test
|
|
shell: bash
|
|
run: |
|
|
cd samples/list_midi_devices
|
|
mkdir build
|
|
cd build
|
|
declare -x PREFIX=`pwd`/../../../build_install
|
|
cmake -DCMAKE_PREFIX_PATH=${PREFIX} ${{ matrix.config.cmake_options }} ..
|
|
cmake --build . --config ${{ matrix.config.build_type }}
|
|
if [[ "${{ runner.os }}" == 'macOS' ]]; then
|
|
declare -x DYLD_LIBRARY_PATH=${DYLD_LIBRARY_PATH}:${PREFIX}
|
|
fi
|
|
if [[ "${{ runner.os }}" == 'Windows' ]]; then
|
|
cp ${PREFIX}/bin/zmusic.dll ${{ matrix.config.build_type }}
|
|
${{ matrix.config.build_type }}/list_midi_devices.exe
|
|
else
|
|
./list_midi_devices
|
|
fi
|
|
|
|
- name: Upload Install Directory
|
|
if: false # Remove this line to upload build artifacts
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: ${{ matrix.config.name }}
|
|
path: build_install
|