We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dac8fdd commit 2e929a4Copy full SHA for 2e929a4
.github/workflows/build-mac.yml
@@ -14,6 +14,7 @@ env:
14
ARTIFACT_EXT: mac
15
PLUGINVAL_VER: v1.0.2
16
VST3_VER: v3.7.9_build_61
17
+ CLAP_VER: v1.2.5
18
19
jobs:
20
build-mac:
@@ -57,6 +58,21 @@ jobs:
57
58
cd iPlug2/Dependencies/IPlug
59
./download-vst3-sdk.sh ${{env.VST3_VER}} build-validator
60
61
+ - name: Cache CLAP SDK
62
+ id: cache-clap
63
+ uses: actions/cache@v3
64
+ with:
65
+ path: |
66
+ iPlug2/Dependencies/IPlug/CLAP_SDK
67
+ key: ${{runner.os}}-clap-${{env.CLAP_VER}}
68
+
69
+ - name: Get CLAP SDK
70
+ if: steps.cache-clap.outputs.cache-hit != 'true'
71
+ shell: bash
72
+ run: |
73
+ cd iPlug2/Dependencies/IPlug
74
+ ./download-clap-sdk.sh ${{env.CLAP_VER}}
75
76
- name: Get VST2 SDK
77
shell: bash
78
env:
0 commit comments