mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 14:51:40 +00:00
- unified continuous integration settings with Raze
This commit is contained in:
parent
0ecd35b0b4
commit
9be78b1ebd
1 changed files with 14 additions and 14 deletions
28
.github/workflows/continuous_integration.yml
vendored
28
.github/workflows/continuous_integration.yml
vendored
|
@ -25,42 +25,42 @@ jobs:
|
||||||
- {
|
- {
|
||||||
name: "macOS",
|
name: "macOS",
|
||||||
os: macos-10.15,
|
os: macos-10.15,
|
||||||
extra_options: "-DDYN_FLUIDSYNTH=OFF -DDYN_OPENAL=OFF -DDYN_SNDFILE=OFF -DDYN_MPG123=OFF",
|
|
||||||
deps_cmdline: "brew install fluidsynth mpg123 libsndfile",
|
|
||||||
build_type: "Release"
|
build_type: "Release"
|
||||||
}
|
}
|
||||||
- {
|
- {
|
||||||
name: "macOS",
|
name: "macOS",
|
||||||
os: macos-10.15,
|
os: macos-10.15,
|
||||||
|
extra_options: "-DDYN_FLUIDSYNTH=OFF -DDYN_OPENAL=OFF -DDYN_SNDFILE=OFF -DDYN_MPG123=OFF",
|
||||||
|
deps_cmdline: "brew install fluidsynth mpg123 libsndfile",
|
||||||
build_type: "Debug"
|
build_type: "Debug"
|
||||||
}
|
}
|
||||||
- {
|
- {
|
||||||
name: "Linux GCC 7",
|
name: "Linux GCC 7",
|
||||||
os: ubuntu-20.04,
|
os: ubuntu-20.04,
|
||||||
extra_options: "-DCMAKE_C_COMPILER=/usr/bin/gcc-7 -DCMAKE_CXX_COMPILER=/usr/bin/g++-7",
|
extra_options: "-DCMAKE_C_COMPILER=gcc-7 -DCMAKE_CXX_COMPILER=g++-7",
|
||||||
deps_cmdline: "sudo apt update && sudo apt install libsdl2-dev libgtk2.0-dev",
|
deps_cmdline: "sudo apt update && sudo apt install g++-7 libsdl2-dev libgtk2.0-dev",
|
||||||
build_type: "RelWithDebInfo"
|
build_type: "RelWithDebInfo"
|
||||||
}
|
}
|
||||||
- {
|
- {
|
||||||
name: "Linux GCC 10",
|
name: "Linux GCC 10",
|
||||||
os: ubuntu-20.04,
|
os: ubuntu-20.04,
|
||||||
extra_options: "-DCMAKE_C_COMPILER=/usr/bin/gcc-10 -DCMAKE_CXX_COMPILER=/usr/bin/g++-10",
|
extra_options: "-DCMAKE_C_COMPILER=gcc-10 -DCMAKE_CXX_COMPILER=g++-10",
|
||||||
deps_cmdline: "sudo apt update && sudo apt install libsdl2-dev libgtk-3-dev",
|
deps_cmdline: "sudo apt update && sudo apt install g++-10 libsdl2-dev libgtk-3-dev",
|
||||||
build_type: "Debug"
|
build_type: "MinSizeRel"
|
||||||
}
|
}
|
||||||
- {
|
- {
|
||||||
name: "Linux Clang 6",
|
name: "Linux Clang 6",
|
||||||
os: ubuntu-20.04,
|
os: ubuntu-20.04,
|
||||||
extra_options: "-DCMAKE_C_COMPILER=clang-6.0 -DCMAKE_CXX_COMPILER=clang++-6.0",
|
extra_options: "-DCMAKE_C_COMPILER=clang-6.0 -DCMAKE_CXX_COMPILER=clang++-6.0 \
|
||||||
deps_cmdline: "sudo apt update && sudo apt install clang-6.0 libsdl2-dev",
|
-DDYN_FLUIDSYNTH=OFF -DDYN_OPENAL=OFF -DDYN_SNDFILE=OFF -DDYN_MPG123=OFF",
|
||||||
|
deps_cmdline: "sudo apt update && sudo apt install clang-6.0 libsdl2-dev libopenal-dev libfluidsynth-dev libmpg123-dev libsndfile1-dev",
|
||||||
build_type: "Debug"
|
build_type: "Debug"
|
||||||
}
|
}
|
||||||
- {
|
- {
|
||||||
name: "Linux Clang 10",
|
name: "Linux Clang 11",
|
||||||
os: ubuntu-20.04,
|
os: ubuntu-20.04,
|
||||||
extra_options: "-DCMAKE_C_COMPILER=clang-10 -DCMAKE_CXX_COMPILER=clang++-10 \
|
extra_options: "-DCMAKE_C_COMPILER=clang-11 -DCMAKE_CXX_COMPILER=clang++-11",
|
||||||
-DDYN_FLUIDSYNTH=OFF -DDYN_OPENAL=OFF -DDYN_SNDFILE=OFF -DDYN_MPG123=OFF",
|
deps_cmdline: "sudo apt update && sudo apt install clang-11 libsdl2-dev libvpx-dev",
|
||||||
deps_cmdline: "sudo apt update && sudo apt install libsdl2-dev libopenal-dev libfluidsynth-dev libmpg123-dev libsndfile1-dev",
|
|
||||||
build_type: "Release"
|
build_type: "Release"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -78,7 +78,7 @@ jobs:
|
||||||
cd build
|
cd build
|
||||||
git clone https://github.com/coelckers/ZMusic.git
|
git clone https://github.com/coelckers/ZMusic.git
|
||||||
cd ZMusic
|
cd ZMusic
|
||||||
git checkout 1.1.0
|
git checkout 1.1.6
|
||||||
cd ..
|
cd ..
|
||||||
cmake -B zmusic_build -DCMAKE_BUILD_TYPE=${{ matrix.config.build_type }} -DCMAKE_INSTALL_PREFIX=`pwd`/zmusic_install ${{ matrix.config.extra_options }} ZMusic
|
cmake -B zmusic_build -DCMAKE_BUILD_TYPE=${{ matrix.config.build_type }} -DCMAKE_INSTALL_PREFIX=`pwd`/zmusic_install ${{ matrix.config.extra_options }} ZMusic
|
||||||
cmake --build zmusic_build --target install --parallel 3
|
cmake --build zmusic_build --target install --parallel 3
|
||||||
|
|
Loading…
Reference in a new issue