fixed markdown bugs #90
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: zones_convolver_tests | |
on: | |
push: | |
branches: [ main ] | |
env: | |
CMAKE_BUILD_PARALLEL_LEVEL: 3 | |
jobs: | |
build_and_test: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Install JUCE's Linux Deps | |
uses: awalsh128/cache-apt-pkgs-action@latest | |
with: | |
packages: libasound2-dev libjack-jackd2-dev ladspa-sdk libcurl4-openssl-dev libfreetype6-dev libx11-dev libxcomposite-dev libxcursor-dev libxcursor-dev libxext-dev libxinerama-dev libxrandr-dev libxrender-dev libwebkit2gtk-4.0-dev libglu1-mesa-dev mesa-common-dev | |
version: 1.0 | |
- uses: lukka/get-cmake@latest | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- 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' |