Skip to content

Commit 60514e7

Browse files
committed
rtcheck: Re-enabled test plugin cache
1 parent e1d2010 commit 60514e7

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/build.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ jobs:
117117
key: v7-${{ runner.os }}-${{ env.JUCE_SHA1 }}
118118

119119
- name: Build JUCE example plugins
120-
# if: steps.cache-plugins.outputs.cache-hit != 'true'
120+
if: steps.cache-plugins.outputs.cache-hit != 'true'
121121
working-directory: modules/juce
122122
shell: bash
123123
run: |
@@ -129,8 +129,9 @@ jobs:
129129
- name: Validate JUCE Plugin examples (VST3)
130130
shell: bash
131131
run: |
132-
${{ env.APP_DIR }}/${{ matrix.test-binary }} --strictness-level 10 --validate '${{ env.PLUGIN_CACHE_PATH }}/MultiOutSynthPlugin_artefacts/Release/VST3/MultiOutSynthPlugin.vst3'
132+
# Paths must be single quoted for bash not to escape the Windows backslash character \ used in absolute paths
133133
${{ env.APP_DIR }}/${{ matrix.test-binary }} --strictness-level 10 --validate '${{ env.PLUGIN_CACHE_PATH }}/DSPModulePluginDemo_artefacts/Release/VST3/DSPModulePluginDemo.vst3'
134+
${{ env.APP_DIR }}/${{ matrix.test-binary }} --strictness-level 10 --validate '${{ env.PLUGIN_CACHE_PATH }}/MultiOutSynthPlugin_artefacts/Release/VST3/MultiOutSynthPlugin.vst3'
134135
135136
- name: Validate JUCE Plugin examples (AU)
136137
shell: bash

0 commit comments

Comments
 (0)