Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/ci
diff options
context:
space:
mode:
authorJordan Petridis <jordan@centricular.com>2022-11-29 19:48:03 +0300
committerJordan Petridis <jordan@centricular.com>2022-11-29 21:04:25 +0300
commitb75483e597e904f6d1d0626a3c696757f48ce097 (patch)
tree5091ecdf913178392ef48a09ae9353b392c017db /ci
parent12c058bc49026fde12458d99ed31acff63979cc6 (diff)
meson: Fix build of static plugins
While we were correctly skipping the plugins that couldn't be built statically, we were still adding their names to the list and the .pc list causing them to still get built. Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/994>
Diffstat (limited to 'ci')
-rwxr-xr-xci/generate-static-test.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/ci/generate-static-test.py b/ci/generate-static-test.py
index 065beb5c5..0f5bb6d35 100755
--- a/ci/generate-static-test.py
+++ b/ci/generate-static-test.py
@@ -7,6 +7,7 @@ import os
from utils import iterate_plugins
# the csound version used on ci does not ship a .pc file
+# threadshare we skip in meson static build as well
IGNORE = ['csound', 'threadshare']
outdir = sys.argv[1]