Skip to content

Add spec to README #112

Add spec to README

Add spec to README #112

name: zones_convolver_tests
on:
push:
branches: [ main ]
env:
CMAKE_BUILD_PARALLEL_LEVEL: 3
jobs:
build_and_test:
runs-on: ubuntu-22.04
steps:
- name: Install JUCE's Linux Deps
run: |
sudo apt-get update && sudo apt install libasound2-dev libx11-dev libxinerama-dev libxext-dev libfreetype6-dev libwebkit2gtk-4.0-dev libglu1-mesa-dev xvfb ninja-build
sudo /usr/bin/Xvfb $DISPLAY &
- name: Checkout code
uses: actions/checkout@v3
with:
submodules: recursive
fetch-depth: 0
- name: ccache
uses: hendrikmuhs/[email protected]
- name: Run CMake consuming CMakePreset.json
uses: lukka/run-cmake@v10
with:
configurePreset: 'ninja-multi'
configurePresetAdditionalArgs: "['-DCMAKE_C_COMPILER_LAUNCHER=ccache', '-DCMAKE_CXX_COMPILER_LAUNCHER=ccache']"
buildPreset: 'build-release'
buildPresetAdditionalArgs: "['--parallel 4']"
testPreset: 'test-release'