We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a76ff21 commit 8686010Copy full SHA for 8686010
1 file changed
.github/workflows/build.yml
@@ -394,12 +394,12 @@ jobs:
394
done
395
- name: Test CLAP plugins
396
run: |
397
- for p in $(ls bin/ | grep clap); do \
+ for p in $(find bin/ -type f | grep '.*\.clap$'); do \
398
env CARLA_BRIDGE_DUMMY=1 CARLA_BRIDGE_TESTING=native \
399
valgrind \
400
--error-exitcode=255 \
401
--leak-check=full \
402
--track-origins=yes \
403
--suppressions=./dpf/utils/valgrind-dpf.supp \
404
- /usr/lib/carla/carla-bridge-native clap ./bin/${p} "" 1>/dev/null; \
+ /usr/lib/carla/carla-bridge-native clap ./${p} "" 1>/dev/null; \
405
0 commit comments