Rename current Cardinal as CardinalFX and add 10cv+audio variant

This commit is contained in:
falkTX 2021-11-09 18:09:40 +00:00
parent 5465b44705
commit f5920faaa3
14 changed files with 93 additions and 20 deletions

View file

@ -356,14 +356,14 @@ jobs:
done
- name: Test VST2 plugin
run: |
for p in $(ls bin/ | grep vst.so); do \
for p in $(ls bin/ | grep vst); do \
env CARLA_BRIDGE_DUMMY=1 CARLA_BRIDGE_TESTING=native \
valgrind \
--error-exitcode=255 \
--leak-check=no \
--track-origins=yes \
--suppressions=./dpf/utils/valgrind-dpf.supp \
/usr/lib/carla/carla-bridge-native vst2 ./bin/${p} "" 1>/dev/null; \
/usr/lib/carla/carla-bridge-native vst2 ./bin/${p}/*.so "" 1>/dev/null; \
done
# - name: Test VST3 plugin
# run: |