ci: Drop gcc `-fanalyzer` by default
There's a pile of new warnings in GCC 12 from F36, I dug into them but most of them seem inscrutable - I am not seeing the bugs. For now to unblock further work, stop using this flag.
This commit is contained in:
parent
6a055f802f
commit
41b9f8ff97
|
|
@ -30,6 +30,6 @@ esac
|
||||||
|
|
||||||
# always fail on warnings; https://github.com/ostreedev/ostree/pull/971
|
# always fail on warnings; https://github.com/ostreedev/ostree/pull/971
|
||||||
# NB: this disables the default set of flags from configure.ac
|
# NB: this disables the default set of flags from configure.ac
|
||||||
export CFLAGS="-Wall -Werror -fanalyzer ${CFLAGS:-}"
|
export CFLAGS="-Wall -Werror ${CFLAGS:-}"
|
||||||
|
|
||||||
build --enable-gtk-doc ${CONFIGOPTS:-}
|
build --enable-gtk-doc ${CONFIGOPTS:-}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue