Skip to content

Small fixes, improvements & optimizations #126

Small fixes, improvements & optimizations

Small fixes, improvements & optimizations #126

Workflow file for this run

name: CMake
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
strategy:
matrix:
os: [macos-14, windows-latest, ubuntu-latest]
build_type: [Release]
# The CMake configure and build commands are platform agnostic and should work equally well on Windows or Mac.
# You can convert this to a matrix build if you need cross-platform coverage.
# See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
runs-on: ${{ matrix.os }}
steps:
- name: List Xcode installations
if: matrix.os == 'macos-14'
run: sudo ls -1 /Applications | grep "Xcode"
- name: Select Xcode 16.2
if: matrix.os == 'macos-14'
run: sudo xcode-select -s /Applications/Xcode_16.2.0.app/Contents/Developer
- uses: actions/checkout@v4
with:
submodules: recursive # ← This ensures Eigen is fetched
- name: Cache CPM dependencies
uses: actions/cache@v4
with:
path: ${{github.workspace}}/libs
key: cpm-deps-${{ runner.os }}-${{ hashFiles('cmake/cpm.cmake', 'CMakeLists.txt') }}
restore-keys: |
cpm-deps-${{ runner.os }}-
- name: Setup vcpkg (Unix)
if: matrix.os != 'windows-latest'
run: |
git clone https://github.com/Microsoft/vcpkg.git
./vcpkg/bootstrap-vcpkg.sh
shell: bash
- name: Setup vcpkg (Windows)
if: matrix.os == 'windows-latest'
run: |
git clone https://github.com/Microsoft/vcpkg.git
.\vcpkg\bootstrap-vcpkg.bat
shell: cmd
- name: Install JUCE dependencies (Linux)
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt-get install -y \
libasound2-dev \
libfreetype6-dev \
libfontconfig1-dev \
libx11-dev \
libxrandr-dev \
libxinerama-dev \
libxcursor-dev \
libgl1-mesa-dev \
pkg-config
- name: Configure CMake
run: cmake -S . -B ${{github.workspace}}/build
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
-DCMAKE_TOOLCHAIN_FILE=${{ github.workspace }}/vcpkg/scripts/buildsystems/vcpkg.cmake
-DCMAKE_CXX_FLAGS="-Wno-error"
if: matrix.os != 'windows-latest'
- name: Configure CMake (Windows)
run: cmake -S . -B ${{github.workspace}}/build
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
-DCMAKE_TOOLCHAIN_FILE=${{ github.workspace }}/vcpkg/scripts/buildsystems/vcpkg.cmake
-DCMAKE_CXX_FLAGS="/WX-"
if: matrix.os == 'windows-latest'
- name: Build
# Build your program with the given configuration
run: cmake --build ${{github.workspace}}/build --config ${{ matrix.build_type }}
- name: Upload VST3 artifact
uses: actions/upload-artifact@v4
with:
name: XenRoll-${{ matrix.os }}-${{ matrix.build_type }}
path: |
${{github.workspace}}/build/**/XenRoll.vst3/**
${{github.workspace}}/build/XenRoll_artefacts/**/VST3/*.vst3/**
if-no-files-found: warn
- name: Test
working-directory: ${{github.workspace}}/build
# Execute tests defined by the CMake configuration.
# See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail
run: ctest -C ${{ matrix.build_type }}