File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments