summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorXavier Claessens <xavier.claessens@collabora.com>2022-09-12 13:38:01 -0400
committerFederico Mena Quintero <federico@gnome.org>2022-09-27 20:23:43 -0500
commit1aa774034a5190062734ceaeb09138f922430fd3 (patch)
tree30fc228af49c6fec173d43688f1087e80b3d6751 /.gitlab-ci.yml
parentf659aab5b5db859d389f82b3d4a1a4a7b13ed849 (diff)
downloadat-spi2-core-1aa774034a5190062734ceaeb09138f922430fd3.tar.gz
meson: Change introspection option to feature
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index e54151bb..bb9a1572 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -102,7 +102,7 @@ static-scan:
- '.fdo.distribution-image@opensuse'
needs: ['opensuse-container@x86_64']
variables:
- MESON_EXTRA_FLAGS: "--buildtype=debug -Dintrospection=no -Ddocs=false"
+ MESON_EXTRA_FLAGS: "--buildtype=debug -Dintrospection=disabled -Ddocs=false"
script:
- meson setup ${MESON_EXTRA_FLAGS} --prefix /usr _scan_build .
- ninja -C _scan_build scan-build
@@ -120,7 +120,7 @@ asan-build:
- '.fdo.distribution-image@opensuse'
needs: ['opensuse-container@x86_64']
variables:
- MESON_EXTRA_FLAGS: "--buildtype=debug -Db_sanitize=address -Db_lundef=false -Dintrospection=no -Ddocs=false"
+ MESON_EXTRA_FLAGS: "--buildtype=debug -Db_sanitize=address -Db_lundef=false -Dintrospection=disabled -Ddocs=false"
# Add a suppressions file for address-sanitizer. Looks like libdbus has a minor leak that is hurting
# the tests while run with asan. Hopefully this will go away once we convert everything to gdbus.
#
@@ -148,7 +148,7 @@ coverage:
- '.fdo.distribution-image@opensuse'
needs: ['opensuse-container@x86_64']
variables:
- MESON_EXTRA_FLAGS: "--buildtype=debug -Ddocs=false -Dintrospection=no"
+ MESON_EXTRA_FLAGS: "--buildtype=debug -Ddocs=false -Dintrospection=disabled"
CFLAGS: "-coverage -ftest-coverage -fprofile-arcs"
script:
- source ./ci/env.sh