diff options
author | Christoph Reiter <reiter.christoph@gmail.com> | 2019-09-28 17:29:35 +0200 |
---|---|---|
committer | Christoph Reiter <reiter.christoph@gmail.com> | 2019-09-30 17:22:37 +0200 |
commit | efbd35d290d35e37994d441c9f2e4c0dffcd9cec (patch) | |
tree | 24f6f060cc812fb1eed1495a8220c157fadfa19d /.gitlab-ci | |
parent | 1cb3b2b27f824f3bbdab1a2e3fedf45a39689019 (diff) | |
download | gobject-introspection-efbd35d290d35e37994d441c9f2e4c0dffcd9cec.tar.gz |
meson: change "doctool" from a boolean to a feature option
Similar to !180 this should prevent devs from not running all tests by
accident.
This also adds some checks for the required doctool dependencies, mako and markdown.
Diffstat (limited to '.gitlab-ci')
-rw-r--r-- | .gitlab-ci/test-msys2-meson.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab-ci/test-msys2-meson.sh b/.gitlab-ci/test-msys2-meson.sh index 37a0f913..40a3cbce 100644 --- a/.gitlab-ci/test-msys2-meson.sh +++ b/.gitlab-ci/test-msys2-meson.sh @@ -38,7 +38,7 @@ export PATH="$HOME/.local/bin:$PATH" # Passing the full interpreter path works around the issue PYTHON="$(which python3)" export CFLAGS="-Werror" -meson -Dcairo=enabled -Ddoctool=true -Dpython="${PYTHON}" --buildtype debug _build +meson -Dcairo=enabled -Ddoctool=enabled -Dpython="${PYTHON}" --buildtype debug _build cd _build ninja |