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
This commit is contained in:
Alexander Larsson
2018-05-31 16:23:15 +02:00
committed by Atomic Bot
parent 2d9865d1d8
commit 3035ff410b

View File

@@ -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