Skip to content

Commit

Permalink
CI: fix clap test
Browse files Browse the repository at this point in the history
Signed-off-by: falkTX <falktx@falktx.com>
  • Loading branch information
falkTX committed Oct 22, 2022
1 parent a76ff21 commit 8686010
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 8686010

Please sign in to comment.