Skip to content

Update CMakeLists.txt #56

Update CMakeLists.txt

Update CMakeLists.txt #56

Workflow file for this run

name: CI
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
workflow_dispatch:
jobs:
build_and_test:
name: Test plugin 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 libjack-jackd2-dev
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-9 9
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-9 9
- name: Get latest CMake
uses: lukka/get-cmake@latest
- name: Checkout code
uses: actions/checkout@v2
- name: Fetch submodules # only on Linux, since setup script will do this otherwsie
if: runner.os == 'Linux'
run: git submodule update --init --recursive
- name: Run setup script
if: runner.os != 'Linux'
run: |
git config --global user.email "[email protected]"
git config --global user.name "Jatin Chowdhury"
bash setup.sh MyPlugin Tst2
- name: Configure
shell: bash
run: cmake -Bbuild
- name: Build
shell: bash
run: cmake --build build --config Release --parallel 4
- name: Validate
if: runner.os == 'Windows' || runner.os == 'MacOS'
run: bash scripts/validate.sh