Skip to content

Update cmake.yml

Update cmake.yml #3

Workflow file for this run

name: juce-ci
on: [push]
env:
BUILD_TYPE: Release
jobs:
build:
runs-on: ${{matrix.os}}
strategy:
matrix:
os: [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 -DCMAKE_BUILD_TYPE=Release