DPF

DISTRHO Plugin Framework
Log | Files | Refs | Submodules | README | LICENSE

commit 622e283a8042b9222462dd496a1b1b80ab867364
parent 80e9c5d557e12aef168ebd1aa6d4b54d35e5ba3a
Author: falkTX <falktx@falktx.com>
Date:   Sat, 18 Sep 2021 14:28:36 +0100

Skip plugin runtime memory checks for now, need to fix carla

Signed-off-by: falkTX <falktx@falktx.com>

Diffstat:
M.github/workflows/example-plugins.yml | 88++++++++++++++++++++++++++++++++++++++++----------------------------------------
1 file changed, 44 insertions(+), 44 deletions(-)

diff --git a/.github/workflows/example-plugins.yml b/.github/workflows/example-plugins.yml @@ -276,47 +276,47 @@ jobs: /usr/lib/lv2/{atom,buf-size,core,data-access,kx-control-input-port-change-request,kx-programs,instance-access,midi,parameters,port-groups,port-props,options,patch,presets,resize-port,state,time,ui,units,urid,worker}.lv2 \ ${LV2_PATH} lv2lint -s lv2_generate_ttl -M nopack $(lv2ls) - - name: Test LADSPA plugins - run: | - for p in $(ls bin/ | grep ladspa.so); do \ - env CARLA_BRIDGE_DUMMY=1 CARLA_BRIDGE_TESTING=native \ - valgrind \ - --error-exitcode=255 \ - --leak-check=full \ - --track-origins=yes \ - --suppressions=./utils/valgrind-dpf.supp \ - /usr/lib/carla/carla-bridge-native ladspa ./bin/${p} "" 1>/dev/null; \ - done - - name: Test DSSI plugins - run: | - for p in $(ls bin/ | grep dssi.so); do \ - env CARLA_BRIDGE_DUMMY=1 CARLA_BRIDGE_TESTING=native \ - valgrind \ - --error-exitcode=255 \ - --leak-check=full \ - --track-origins=yes \ - --suppressions=./utils/valgrind-dpf.supp \ - /usr/lib/carla/carla-bridge-native dssi ./bin/${p} "" 1>/dev/null; \ - done - - name: Test LV2 plugins - run: | - for p in $(lv2ls); do \ - env CARLA_BRIDGE_DUMMY=1 CARLA_BRIDGE_TESTING=native \ - valgrind \ - --error-exitcode=255 \ - --leak-check=full \ - --track-origins=yes \ - --suppressions=./utils/valgrind-dpf.supp \ - /usr/lib/carla/carla-bridge-native lv2 "" ${p} 1>/dev/null; \ - done - - name: Test VST2 plugins - run: | - for p in $(ls bin/ | grep vst.so); do \ - env CARLA_BRIDGE_DUMMY=1 CARLA_BRIDGE_TESTING=native \ - valgrind \ - --error-exitcode=255 \ - --leak-check=full \ - --track-origins=yes \ - --suppressions=./utils/valgrind-dpf.supp \ - /usr/lib/carla/carla-bridge-native vst2 ./bin/${p} "" 1>/dev/null; \ - done + #- name: Test LADSPA plugins + #run: | + #for p in $(ls bin/ | grep ladspa.so); do \ + #env CARLA_BRIDGE_DUMMY=1 CARLA_BRIDGE_TESTING=native \ + #valgrind \ + #--error-exitcode=255 \ + #--leak-check=full \ + #--track-origins=yes \ + #--suppressions=./utils/valgrind-dpf.supp \ + #/usr/lib/carla/carla-bridge-native ladspa ./bin/${p} "" 1>/dev/null; \ + #done + #- name: Test DSSI plugins + #run: | + #for p in $(ls bin/ | grep dssi.so); do \ + #env CARLA_BRIDGE_DUMMY=1 CARLA_BRIDGE_TESTING=native \ + #valgrind \ + #--error-exitcode=255 \ + #--leak-check=full \ + #--track-origins=yes \ + #--suppressions=./utils/valgrind-dpf.supp \ + #/usr/lib/carla/carla-bridge-native dssi ./bin/${p} "" 1>/dev/null; \ + #done + #- name: Test LV2 plugins + #run: | + #for p in $(lv2ls); do \ + #env CARLA_BRIDGE_DUMMY=1 CARLA_BRIDGE_TESTING=native \ + #valgrind \ + #--error-exitcode=255 \ + #--leak-check=full \ + #--track-origins=yes \ + #--suppressions=./utils/valgrind-dpf.supp \ + #/usr/lib/carla/carla-bridge-native lv2 "" ${p} 1>/dev/null; \ + #done + #- name: Test VST2 plugins + #run: | + #for p in $(ls bin/ | grep vst.so); do \ + #env CARLA_BRIDGE_DUMMY=1 CARLA_BRIDGE_TESTING=native \ + #valgrind \ + #--error-exitcode=255 \ + #--leak-check=full \ + #--track-origins=yes \ + #--suppressions=./utils/valgrind-dpf.supp \ + #/usr/lib/carla/carla-bridge-native vst2 ./bin/${p} "" 1>/dev/null; \ + #done