Skip to content

Commit 2e929a4

Browse files
committed
fixup! Add new build-mac.yml GHA workflow
1 parent dac8fdd commit 2e929a4

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/build-mac.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ env:
1414
ARTIFACT_EXT: mac
1515
PLUGINVAL_VER: v1.0.2
1616
VST3_VER: v3.7.9_build_61
17+
CLAP_VER: v1.2.5
1718

1819
jobs:
1920
build-mac:
@@ -57,6 +58,21 @@ jobs:
5758
cd iPlug2/Dependencies/IPlug
5859
./download-vst3-sdk.sh ${{env.VST3_VER}} build-validator
5960
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+
6076
- name: Get VST2 SDK
6177
shell: bash
6278
env:

0 commit comments

Comments
 (0)