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:
Colin Walters 2022-05-15 16:03:38 -04:00
parent 6a055f802f
commit 41b9f8ff97
1 changed files with 1 additions and 1 deletions

View File

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