Skip to content

Commit 8686010

Browse files
committed
CI: fix clap test
Signed-off-by: falkTX <falktx@falktx.com>
1 parent a76ff21 commit 8686010

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -394,12 +394,12 @@ jobs:
394394
done
395395
- name: Test CLAP plugins
396396
run: |
397-
for p in $(ls bin/ | grep clap); do \
397+
for p in $(find bin/ -type f | grep '.*\.clap$'); do \
398398
env CARLA_BRIDGE_DUMMY=1 CARLA_BRIDGE_TESTING=native \
399399
valgrind \
400400
--error-exitcode=255 \
401401
--leak-check=full \
402402
--track-origins=yes \
403403
--suppressions=./dpf/utils/valgrind-dpf.supp \
404-
/usr/lib/carla/carla-bridge-native clap ./bin/${p} "" 1>/dev/null; \
404+
/usr/lib/carla/carla-bridge-native clap ./${p} "" 1>/dev/null; \
405405
done

0 commit comments

Comments
 (0)