Skip to content

Commit cbdbc13

Browse files
committed
Fix CI, mention CLAP in readme
Signed-off-by: falkTX <falktx@falktx.com>
1 parent 39c6c21 commit cbdbc13

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -519,12 +519,12 @@ jobs:
519519
done
520520
- name: Test CLAP plugins
521521
run: |
522-
for p in $(ls bin/ | grep clap); do \
522+
for p in $(find bin/ -type f | grep '.*\.clap$'); do \
523523
env CARLA_BRIDGE_DUMMY=1 CARLA_BRIDGE_TESTING=native \
524524
valgrind \
525525
--error-exitcode=255 \
526526
--leak-check=full \
527527
--track-origins=yes \
528528
--suppressions=./dpf/utils/valgrind-dpf.supp \
529-
/usr/lib/carla/carla-bridge-native clap ./bin/${p} "" 1>/dev/null; \
529+
/usr/lib/carla/carla-bridge-native clap ./${p} "" 1>/dev/null; \
530530
done

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ DPF-Plugins
22
===========
33

44
Collection of DPF-based plugins ready for packaging.<br/>
5-
They come in LADSPA, DSSI, LV2, VST2 and VST3 formats.
5+
They come in LADSPA, DSSI, LV2, VST2, VST3 and CLAP formats.
66

77
This repository does not use submodules,<br/>
88
everything you need to build is included in a simple clone.

0 commit comments

Comments
 (0)