diff options
author | Xavier Claessens <xavier.claessens@collabora.com> | 2020-09-29 11:00:45 -0400 |
---|---|---|
committer | Xavier Claessens <xavier.claessens@collabora.com> | 2020-09-30 09:36:06 -0400 |
commit | 2a6bb53779c760dfabad9e8e8ae225dc12ac5631 (patch) | |
tree | c8a09a3218395da09f828fe00fa1e8da019034bd /.gitlab-ci.yml | |
parent | bbdb6890f2c45a7f5353402fb723073d15227612 (diff) | |
download | pango-2a6bb53779c760dfabad9e8e8ae225dc12ac5631.tar.gz |
meson: Change introspection option to yielding feature
Yielding option means that if pango is built as a subproject, it will
take the value of that option from the parent project (e.g. gst-build).
For that to work it must be of the same type, which is "feature" instead
of "boolean" in all GStreamer modules.
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index dffa8056..c287010c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -40,7 +40,7 @@ asan-build: needs: [] variables: script: - - CC=clang meson --buildtype=debugoptimized -Db_sanitize=address -Db_lundef=false -Dintrospection=false _build + - CC=clang meson --buildtype=debugoptimized -Db_sanitize=address -Db_lundef=false -Dintrospection=disabled _build - ninja -C _build - .gitlab-ci/run-tests.sh _build allow_failure: true |