remove unnecessary curl dep #104
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-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' |