summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiels De Graef <nielsdegraef@gmail.com>2020-11-15 20:07:48 +0000
committerNiels De Graef <nielsdegraef@gmail.com>2020-11-15 20:07:48 +0000
commit21cca20c187425675d0615dda5806d54997e6512 (patch)
treebb88ac9c81090e2fe316b618378587417073d644
parent5874816714a3183be176f464fe4f4ba9d704bb9d (diff)
parentfae49c76d456e0031bf0a4482b01c28572debe62 (diff)
downloadlibsecret-21cca20c187425675d0615dda5806d54997e6512.tar.gz
Merge branch 'wip/nielsdg/fix-ci-coverage' into 'master'
ci: Fix the coverage build See merge request GNOME/libsecret!61
-rw-r--r--libsecret/meson.build4
1 files changed, 3 insertions, 1 deletions
diff --git a/libsecret/meson.build b/libsecret/meson.build
index 0c448b9..f57e363 100644
--- a/libsecret/meson.build
+++ b/libsecret/meson.build
@@ -303,7 +303,9 @@ if get_option('introspection')
endif
# Vala tests
- if get_option('vapi')
+ # FIXME: Don't add Vala tests when generating a coverage build, as this
+ # will fail due to https://github.com/mesonbuild/meson/issues/7426
+ if get_option('vapi') and not get_option('b_coverage')
# FIXME: the "native" kwarg should be added once we can require meson ≥0.54
add_languages('vala')
valac = meson.get_compiler('vala')