From cbdbc1342e56424ae1b7f964c0da992f3eace58a Mon Sep 17 00:00:00 2001 From: falkTX Date: Sat, 22 Oct 2022 16:24:02 +0100 Subject: [PATCH] Fix CI, mention CLAP in readme Signed-off-by: falkTX --- .github/workflows/build.yml | 4 ++-- README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2bb4af7..2d38724 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -519,12 +519,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 diff --git a/README.md b/README.md index c024c79..3622749 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ DPF-Plugins =========== Collection of DPF-based plugins ready for packaging.
-They come in LADSPA, DSSI, LV2, VST2 and VST3 formats. +They come in LADSPA, DSSI, LV2, VST2, VST3 and CLAP formats. This repository does not use submodules,
everything you need to build is included in a simple clone.