From a1093fdeda8ffddb41a9cedfcd04c295fefeeb2e Mon Sep 17 00:00:00 2001 From: Evgeny Vereshchagin Date: Mon, 12 Apr 2021 22:40:35 +0000 Subject: [PATCH] ci: build with -Wall -Werror Signed-off-by: Evgeny Vereshchagin --- .github/workflows/sanitizers.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sanitizers.sh b/.github/workflows/sanitizers.sh index 5dc857139..6d4edf372 100755 --- a/.github/workflows/sanitizers.sh +++ b/.github/workflows/sanitizers.sh @@ -31,7 +31,7 @@ if [[ "$CC" == "gcc" ]]; then fi ./autogen.sh -CFLAGS=-fsanitize=address,undefined ./configure --enable-tests --prefix=/usr/ --sysconfdir=/etc/ --localstatedir=/var/ --disable-no-undefined +CFLAGS="-Wall -Werror -fsanitize=address,undefined" ./configure --enable-tests --prefix=/usr/ --sysconfdir=/etc/ --localstatedir=/var/ --disable-no-undefined make make install -- 2.47.2