Browse Source

Fix CI, mention CLAP in readme

Signed-off-by: falkTX <falktx@falktx.com>
tags/v1.6
falkTX 2 years ago
parent
commit
cbdbc1342e
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
2 changed files with 3 additions and 3 deletions
  1. +2
    -2
      .github/workflows/build.yml
  2. +1
    -1
      README.md

+ 2
- 2
.github/workflows/build.yml View File

@@ -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

+ 1
- 1
README.md View File

@@ -2,7 +2,7 @@ DPF-Plugins
===========

Collection of DPF-based plugins ready for packaging.<br/>
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,<br/>
everything you need to build is included in a simple clone.


Loading…
Cancel
Save