Skip to content

rsav-compile

rsav-compile #11

Workflow file for this run

name: rsav-compile
on: [workflow_dispatch]
# env:
# BUILD_TYPE: Release
jobs:
build:
runs-on: ${{matrix.os}}
strategy:
matrix:
os: [macos-latest, windows-latest]
steps:
- name: "Preparation"
uses: actions/checkout@v2
- name: "(JUCE) Clone Repository"
uses: actions/checkout@v2
with:
repository: juce-framework/JUCE
path: ${{runner.workspace}}/RSAlgorithmicVerb/JUCE
- name: "Create Build Environment"
working-directory: ${{runner.workspace}}/RSAlgorithmicVerb
run: cmake -S . -B build
- name: "Build"
working-directory: ${{runner.workspace}}/RSAlgorithmicVerb
run: cmake --build build --config Release
- name: Archive build artifacts
uses: actions/upload-artifact@v4
with:
name: "RSAlgorithmicVerb_${{ runner.os }}"
path: ${{runner.workspace}}/RSAlgorithmicVerb/build/RSAlgorithmicVerb_artefacts/