Browse Source

CI: fix clap test

Signed-off-by: falkTX <falktx@falktx.com>
master
falkTX 2 years ago
parent
commit
8686010aad
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      .github/workflows/build.yml

+ 2
- 2
.github/workflows/build.yml View File

@@ -394,12 +394,12 @@ jobs:
done
- name: Test CLAP plugins
run: |
for p in $(ls bin/ | grep clap); do \
for p in $(find bin/ -type f | grep '.*\.clap$'); do \
env CARLA_BRIDGE_DUMMY=1 CARLA_BRIDGE_TESTING=native \
valgrind \
--error-exitcode=255 \
--leak-check=full \
--track-origins=yes \
--suppressions=./dpf/utils/valgrind-dpf.supp \
/usr/lib/carla/carla-bridge-native clap ./bin/${p} "" 1>/dev/null; \
/usr/lib/carla/carla-bridge-native clap ./${p} "" 1>/dev/null; \
done

Loading…
Cancel
Save