From 3035ff410b0749c7ab863e57771dd05d8be4b413 Mon Sep 17 00:00:00 2001 From: Alexander Larsson Date: Thu, 31 May 2018 16:23:15 +0200 Subject: [PATCH] CI: Disable introspection when building with clang f28 default cflags are picked up by g-ir-scanner and they don't work with clang as per: https://bugzilla.redhat.com/show_bug.cgi?id=1543295 Closes: #1741 Approved by: alexlarsson --- ci/build-check.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ci/build-check.sh b/ci/build-check.sh index 24dd348f..99209de9 100755 --- a/ci/build-check.sh +++ b/ci/build-check.sh @@ -14,5 +14,6 @@ if test -x /usr/bin/clang; then # in the future these could parallelize export CC=clang export CFLAGS='-Werror=unused-variable' - build + # We disable introspection because it fails with clang: https://bugzilla.redhat.com/show_bug.cgi?id=1543295 + build --disable-introspection fi