mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-29 05:01:23 +00:00
ci: Build introspection support on static builds
But disable python in GES as it is not supported on static builds Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/1093>
This commit is contained in:
parent
ba37e0aa2f
commit
e73fc26cf6
1 changed files with 12 additions and 5 deletions
|
@ -361,12 +361,20 @@ build nodebug fedora x86_64:
|
||||||
build static fedora x86_64:
|
build static fedora x86_64:
|
||||||
extends: '.build fedora x86_64'
|
extends: '.build fedora x86_64'
|
||||||
variables:
|
variables:
|
||||||
MESON_BUILDTYPE_ARGS: "--default-library=static -Dintrospection=disabled -Ddoc=disabled"
|
MESON_BUILDTYPE_ARGS: >
|
||||||
|
--default-library=static
|
||||||
|
-Dintrospection=disabled
|
||||||
|
-Ddoc=disabled
|
||||||
|
-Dpython=auto
|
||||||
|
|
||||||
build static nodebug fedora x86_64:
|
build static nodebug fedora x86_64:
|
||||||
extends: 'build nodebug fedora x86_64'
|
extends: 'build nodebug fedora x86_64'
|
||||||
variables:
|
variables:
|
||||||
MESON_BUILDTYPE_ARGS: "--default-library=static -Dintrospection=disabled -Ddoc=disabled"
|
MESON_BUILDTYPE_ARGS: >
|
||||||
|
--default-library=static
|
||||||
|
-Dintrospection=disabled
|
||||||
|
-Ddoc=disabled
|
||||||
|
-Dpython=auto
|
||||||
|
|
||||||
build clang fedora x86_64:
|
build clang fedora x86_64:
|
||||||
extends: '.build fedora x86_64'
|
extends: '.build fedora x86_64'
|
||||||
|
@ -525,15 +533,14 @@ integration testsuites fedora:
|
||||||
TEST_SUITE: "validate ges"
|
TEST_SUITE: "validate ges"
|
||||||
|
|
||||||
# gstreamer-full:
|
# gstreamer-full:
|
||||||
# introspection has been disabled as the static build does not support it.
|
|
||||||
# See https://gitlab.freedesktop.org/gstreamer/gst-build/-/issues/162
|
|
||||||
gstreamer-full:
|
gstreamer-full:
|
||||||
extends: 'build static fedora x86_64'
|
extends: 'build static fedora x86_64'
|
||||||
stage: integrate
|
stage: integrate
|
||||||
variables:
|
variables:
|
||||||
MESON_ARGS: >
|
MESON_ARGS: >
|
||||||
--default-library=static
|
--default-library=static
|
||||||
-Dintrospection=disabled
|
-Ddoc=disabled
|
||||||
|
-Dgst-editing-services:python=disabled
|
||||||
$MESON_GST_WERROR
|
$MESON_GST_WERROR
|
||||||
rules:
|
rules:
|
||||||
# If this matches, it means the pipeline is running against either the main
|
# If this matches, it means the pipeline is running against either the main
|
||||||
|
|
Loading…
Reference in a new issue