Skip to content

Consistency features and bugs #8

Consistency features and bugs

Consistency features and bugs #8

Workflow file for this run

name: Build Pull Request
on:
pull_request:
defaults:
run:
shell: bash
jobs:
build_plugin:
name: PR - ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: windows-latest
- os: macos-latest
- os: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
submodules: recursive
- name: Prepare for JUCE
uses: surge-synthesizer/sst-githubactions/prepare-for-juce@main
with:
os: ${{ runner.os }}
gccversion: 9
- name: Build pull request version (macos)
if: runner.os == 'macOS'
run: |
STOCHAS_VERSION=0.0.0 ./scripts/mac-build.sh
- name: Build pull request version (linux)
if: runner.os == 'Linux'
run: |
STOCHAS_VERSION=0.0.0 ./scripts/linux-build.sh
- name: Build pull request version (windows)
if: runner.os == 'Windows'
run: |
cmake -S . -B ./build -DCMAKE_BUILD_TYPE=Debug -DSTOCHAS_VERSION=0.0.0
cmake --build ./build --config Debug --target stochas_Standalone --parallel 3