Skip to content

Commit fcbb16a

Browse files
committed
rtcheck: Disable rtcheck for now to see if signing works
1 parent 5a9f4e5 commit fcbb16a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -130,8 +130,8 @@ jobs:
130130
shell: bash
131131
run: |
132132
# Paths must be single quoted for bash not to escape the Windows backslash character \ used in absolute paths
133-
${{ env.APP_DIR }}/${{ matrix.test-binary }} --strictness-level 10 --rtcheck relaxed --validate '${{ env.PLUGIN_CACHE_PATH }}/DSPModulePluginDemo_artefacts/Release/VST3/DSPModulePluginDemo.vst3'
134-
${{ env.APP_DIR }}/${{ matrix.test-binary }} --strictness-level 10 --rtcheck relaxed --validate '${{ env.PLUGIN_CACHE_PATH }}/MultiOutSynthPlugin_artefacts/Release/VST3/MultiOutSynthPlugin.vst3'
133+
${{ env.APP_DIR }}/${{ matrix.test-binary }} --strictness-level 10 --rtcheck disabled --validate '${{ env.PLUGIN_CACHE_PATH }}/DSPModulePluginDemo_artefacts/Release/VST3/DSPModulePluginDemo.vst3'
134+
${{ env.APP_DIR }}/${{ matrix.test-binary }} --strictness-level 10 --rtcheck disabled --validate '${{ env.PLUGIN_CACHE_PATH }}/MultiOutSynthPlugin_artefacts/Release/VST3/MultiOutSynthPlugin.vst3'
135135
136136
- name: Validate JUCE Plugin examples (AU)
137137
shell: bash
@@ -143,7 +143,7 @@ jobs:
143143
mkdir -p ~/Library/Audio/Plug-Ins/Components/
144144
cp -R ${{ env.PLUGIN_CACHE_PATH }}/DSPModulePluginDemo_artefacts/Release/AU/DSPModulePluginDemo.component ~/Library/Audio/Plug-Ins/Components/
145145
killall -9 AudioComponentRegistrar # kick the AU registrar
146-
${{ env.APP_DIR }}/${{ matrix.test-binary }} --strictness-level 10 --rtcheck relaxed --validate ~/Library/Audio/Plug-Ins/Components/DSPModulePluginDemo.component
146+
${{ env.APP_DIR }}/${{ matrix.test-binary }} --strictness-level 10 --rtcheck disabled --validate ~/Library/Audio/Plug-Ins/Components/DSPModulePluginDemo.component
147147
148148
- name: Codesign (macOS)
149149
if: ${{ matrix.name == 'macOS' }}

0 commit comments

Comments
 (0)