From 0dc042f044009973dc446fe5f9403b960d0a3126 Mon Sep 17 00:00:00 2001 From: Simson Garfinkel Date: Thu, 5 Dec 2024 12:24:04 -0500 Subject: [PATCH] changed -Werror to -Wall --- .github/workflows/build-unix.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-unix.yml b/.github/workflows/build-unix.yml index f024c6bfe..c4e0c9144 100644 --- a/.github/workflows/build-unix.yml +++ b/.github/workflows/build-unix.yml @@ -37,7 +37,8 @@ jobs: linkage: "shared" compiler: "gcc" runner: "ubuntu-22.04" - configure_opts: "CFLAGS=-Werror CXXFLAGS=-Werror" + #configure_opts: "CFLAGS=-Werror CXXFLAGS=-Werror" + configure_opts: "CFLAGS=-Wall CXXFLAGS=-Wall" codecov: "no" prefix: address_sanitizer: "yes" @@ -49,7 +50,8 @@ jobs: linkage: "shared" compiler: "clang" runner: "ubuntu-22.04" - configure_opts: "CC=clang CXX=clang++ CFLAGS=-Werror CXXFLAGS=-Werror" + #configure_opts: "CC=clang CXX=clang++ CFLAGS=-Werror CXXFLAGS=-Werror" + configure_opts: "CC=clang CXX=clang++ CFLAGS=-Wall CXXFLAGS=-Wall" codecov: "no" prefix: "" address_sanitizer: "yes"