Patch for the 2.4.0 SDK #174
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: VCV Rack Code Checks | |
on: [pull_request] | |
env: | |
rack-sdk-version: 2.3.0 | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
build-code-checks: | |
name: code-checks | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: true | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Get Rack-SDK | |
run: | | |
pushd $HOME | |
curl -o Rack-SDK.zip https://vcvrack.com/downloads/Rack-SDK-${{ env.rack-sdk-version }}-lin-x64.zip | |
unzip Rack-SDK.zip | |
- name: Run Code Checks | |
run: | | |
cmake -Bbuild -DRACK_SDK_DIR=$HOME/Rack-SDK -DCMAKE_BUILD_TYPE=DEBUG | |
cmake --build build --target xt-rack-code-checks |