Skip to content

StandardEQParameter: add constructor argument for ParamHolder name #1056

StandardEQParameter: add constructor argument for ParamHolder name

StandardEQParameter: add constructor argument for ParamHolder name #1056

Workflow file for this run

name: Examples
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:
env:
EXAMPLE_TARGETS: "ForwardingTestPlugin_Standalone ModalSpringReverb_Standalone SimpleEQ_Standalone StatefulPlugin_Standalone ExampleCompressor_Standalone"
jobs:
build_examples:
name: "Build Example ${{ matrix.target }} on ${{ matrix.os }}"
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false # show all errors for each platform (vs. cancel jobs on error)
matrix:
os: [ubuntu-latest, windows-2019, macos-latest]
steps:
- name: Install Linux Deps
if: runner.os == 'Linux'
run: |
sudo apt-get update
sudo apt install libasound2-dev libcurl4-openssl-dev libx11-dev libxinerama-dev libxext-dev libfreetype6-dev libwebkit2gtk-4.0-dev libglu1-mesa-dev libsamplerate-dev
- name: Get latest CMake
uses: lukka/get-cmake@latest
- name: Checkout code
uses: actions/checkout@v2
- name: Configure
shell: bash
run: cmake -Bbuild -DCHOWDSP_ENABLE_EXAMPLES=ON
- name: "Build Example: ${{ matrix.target }}"
shell: bash
run: cmake --build build --parallel 4 --target $EXAMPLE_TARGETS