diff options
author | Christoph Reiter <reiter.christoph@gmail.com> | 2020-05-06 20:33:46 +0200 |
---|---|---|
committer | Christoph Reiter <reiter.christoph@gmail.com> | 2020-05-06 20:34:39 +0200 |
commit | 1e0f860a7586781065f01be3a04388c8e14b7cc4 (patch) | |
tree | 312db877efc7a161693137b8e6e0e6aa7c2ff1f8 /.gitlab-ci/test-msys2.sh | |
parent | 053617a283ce59e84cab077f7f07288dab5e0075 (diff) | |
download | gtk+-1e0f860a7586781065f01be3a04388c8e14b7cc4.tar.gz |
CI: disable introspection with mingw to avoid flaky builds
g-i has started to fail and it's not clear why, so disable it for
now to keep the build green.
See https://gitlab.gnome.org/GNOME/gobject-introspection/-/issues/340
Diffstat (limited to '.gitlab-ci/test-msys2.sh')
-rw-r--r-- | .gitlab-ci/test-msys2.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.gitlab-ci/test-msys2.sh b/.gitlab-ci/test-msys2.sh index 554091bc21..8008443d18 100644 --- a/.gitlab-ci/test-msys2.sh +++ b/.gitlab-ci/test-msys2.sh @@ -45,11 +45,14 @@ export CCACHE_DIR="${CCACHE_BASEDIR}/_ccache" ccache --zero-stats ccache --show-stats export CCACHE_DISABLE=true +# FIXME: introspection disabled for now because of +# https://gitlab.gnome.org/GNOME/gobject-introspection/-/issues/340 meson \ -Dx11-backend=false \ -Dwayland-backend=false \ -Dwin32-backend=true \ -Dvulkan=no \ + -Dintrospection=false \ --werror \ _build unset CCACHE_DISABLE |