Skip to content

Commit 0c021ce

Browse files
committed
rtcheck: Disable rtcheck for Linux
1 parent 29eb894 commit 0c021ce

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/build.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -135,11 +135,11 @@ jobs:
135135
gdb -batch -ex "run" -ex "bt" -ex "bt full" -ex "info registers" -ex "quit" \
136136
--args ${{ env.APP_DIR }}/${{ matrix.test-binary }} \
137137
--strictness-level 10 \
138-
--rtcheck disabled \
138+
--rtcheck relaxed \
139139
--validate '${{ env.PLUGIN_CACHE_PATH }}/DSPModulePluginDemo_artefacts/Debug/VST3/DSPModulePluginDemo.vst3'
140140
141-
${{ env.APP_DIR }}/${{ matrix.test-binary }} --strictness-level 10 --rtcheck disabled --validate '${{ env.PLUGIN_CACHE_PATH }}/DSPModulePluginDemo_artefacts/Debug/VST3/DSPModulePluginDemo.vst3'
142-
${{ env.APP_DIR }}/${{ matrix.test-binary }} --strictness-level 10 --rtcheck disabled --validate '${{ env.PLUGIN_CACHE_PATH }}/MultiOutSynthPlugin_artefacts/Debug/VST3/MultiOutSynthPlugin.vst3'
141+
${{ env.APP_DIR }}/${{ matrix.test-binary }} --strictness-level 10 --rtcheck relaxed --validate '${{ env.PLUGIN_CACHE_PATH }}/DSPModulePluginDemo_artefacts/Debug/VST3/DSPModulePluginDemo.vst3'
142+
${{ env.APP_DIR }}/${{ matrix.test-binary }} --strictness-level 10 --rtcheck relaxed --validate '${{ env.PLUGIN_CACHE_PATH }}/MultiOutSynthPlugin_artefacts/Debug/VST3/MultiOutSynthPlugin.vst3'
143143
144144
145145
- name: Validate JUCE Plugin examples (AU)

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ if (APPLE)
1111
# set(CMAKE_OSX_ARCHITECTURES arm64 x86_64)
1212
set(PLUGINVAL_ENABLE_RTCHECK ON)
1313
elseif (CMAKE_SYSTEM_NAME STREQUAL "Linux")
14-
set(PLUGINVAL_ENABLE_RTCHECK ON)
14+
# set(PLUGINVAL_ENABLE_RTCHECK ON)
1515
endif()
1616

1717
# sanitizer options, from https://github.com/sudara/cmake-includes/blob/main/Sanitizers.cmake

0 commit comments

Comments
 (0)