From: Thomas Huth Date: Wed, 15 Jul 2020 17:47:07 +0000 (+0200) Subject: cirrus.yml: Compile FreeBSD with -Werror X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=91bedaaeb6e192a182cc51cdd7a7e61e74b8d525;p=qmiga%2Fqemu.git cirrus.yml: Compile FreeBSD with -Werror Compiler warnings currently go unnoticed in our FreeBSD builds, since -Werror is only enabled for Linux and MinGW builds by default. So let's enable them here now, too. Reviewed-by: Ed Maste Message-Id: <20200728074405.13118-3-thuth@redhat.com> Reviewed-by: Daniel P. Berrangé Signed-off-by: Thomas Huth --- diff --git a/.cirrus.yml b/.cirrus.yml index f287d23c5b..b50da72eec 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -12,7 +12,7 @@ freebsd_12_task: script: - mkdir build - cd build - - ../configure || { cat config.log; exit 1; } + - ../configure --enable-werror || { cat config.log; exit 1; } - gmake -j8 - gmake V=1 check