Nugget Doom post-3.2.0 + Woof! post-14.5.0 merge #4
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: Build Packages | |
on: | |
push: | |
branches: [ master ] | |
tags: ['*'] | |
paths-ignore: ['**.md'] | |
pull_request: | |
branches: [ master ] | |
paths-ignore: ['**.md'] | |
workflow_dispatch: | |
env: | |
VCPKG_BINARY_SOURCES: "clear;x-gha,readwrite" | |
jobs: | |
build: | |
name: ${{ matrix.config.name }} | |
runs-on: ${{ matrix.config.os }} | |
strategy: | |
matrix: | |
config: | |
- name: Linux GCC | |
os: ubuntu-22.04 | |
triplet: x64-linux-dynamic-release | |
artifact-name: Cherry-Doom-AppImage | |
artifact-path: build/*.appimage | |
extra-options: -DCMAKE_INSTALL_PREFIX=/usr | |
- name: MSVC x64 | |
os: windows-latest | |
arch: x64 | |
triplet: x64-windows-static-release | |
artifact-name: Cherry-Doom-Win64 | |
artifact-path: build/*.zip | |
extra-options: >- | |
-DCMAKE_POLICY_DEFAULT_CMP0091=NEW | |
-DCMAKE_MSVC_RUNTIME_LIBRARY=MultiThreaded | |
-DCMAKE_IGNORE_PATH="C:/Strawberry/perl/bin;C:/Strawberry/c/lib" | |
- name: MSVC x86 | |
os: windows-latest | |
arch: x86 | |
triplet: x86-windows-static-release | |
artifact-name: Cherry-Doom-Win32 | |
artifact-path: build/*.zip | |
extra-options: >- | |
-DCMAKE_POLICY_DEFAULT_CMP0091=NEW | |
-DCMAKE_MSVC_RUNTIME_LIBRARY=MultiThreaded | |
-DCMAKE_IGNORE_PATH="C:/Strawberry/perl/bin;C:/Strawberry/c/lib" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies (Linux) | |
if: runner.os == 'Linux' | |
run: | | |
sudo sed -i 's/# deb-src/deb-src/' /etc/apt/sources.list | |
sudo apt-get update | |
sudo apt-get install ninja-build | |
sudo apt-get build-dep libsdl2-dev | |
- name: Developer Command Prompt | |
if: runner.os == 'Windows' | |
uses: ilammy/msvc-dev-cmd@v1 | |
with: | |
arch: ${{ matrix.config.arch }} | |
- name: Export GitHub Actions cache environment variables | |
uses: actions/github-script@v7 | |
with: | |
script: | | |
core.exportVariable('ACTIONS_CACHE_URL', process.env.ACTIONS_CACHE_URL || ''); | |
core.exportVariable('ACTIONS_RUNTIME_TOKEN', process.env.ACTIONS_RUNTIME_TOKEN || ''); | |
- name: Update vcpkg (Linux) | |
if: runner.os == 'Linux' | |
run: | | |
cd "$VCPKG_INSTALLATION_ROOT" | |
git stash | |
git pull | |
./bootstrap-vcpkg.sh | |
- name: Configure | |
shell: bash | |
run: >- | |
cmake -B build -G Ninja | |
-DCMAKE_BUILD_TYPE=Release | |
-DENABLE_WERROR=ON -DENABLE_HARDENING=ON -DENABLE_LTO=ON | |
-DCMAKE_TOOLCHAIN_FILE="$VCPKG_INSTALLATION_ROOT/scripts/buildsystems/vcpkg.cmake" | |
-DVCPKG_OVERLAY_TRIPLETS="cmake/triplets" | |
-DVCPKG_TARGET_TRIPLET=${{ matrix.config.triplet }} | |
${{ matrix.config.extra-options }} | |
- name: Build | |
run: cmake --build build --config "Release" | |
- name: Test | |
if: github.event_name == 'workflow_dispatch' | |
run: | | |
cd demotest | |
pip install pyyaml joblib | |
python demotest --jobs 4 --port ../build/src/cherry-doom | |
- name: Package (Linux) | |
if: runner.os == 'Linux' | |
run: | | |
export LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${{ github.workspace }}/build/vcpkg_installed/${{ matrix.config.triplet }}/lib" | |
cd build | |
cpack | |
- name: Package (Windows) | |
if: runner.os == 'Windows' | |
run: | | |
cd build | |
cpack | |
- name: Upload Artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ matrix.config.artifact-name }} | |
path: ${{ matrix.config.artifact-path }} | |
- name: Extract Version Number | |
if: ${{ contains(github.ref, 'tags') }} | |
shell: bash | |
run: echo "VERSION=${GITHUB_REF##*_}" >> $GITHUB_ENV |