From 923eb689a4b863b6cca8df6360d4962aae994edf Mon Sep 17 00:00:00 2001 From: Jia Tan Date: Wed, 11 Jan 2023 00:51:01 +0800 Subject: [PATCH] CI/CD: Enables warnings as errors in autotool build. This will help us catch warnings and potential bugs in builds that are not often tested by us. --- build-aux/ci_build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-aux/ci_build.sh b/build-aux/ci_build.sh index 8c309028..6e264769 100755 --- a/build-aux/ci_build.sh +++ b/build-aux/ci_build.sh @@ -128,7 +128,7 @@ if [ "$PHASE" = "all" ] || [ "$PHASE" = "build" ]; then fi # Run configure script - "$SRC_DIR"/configure --enable-checks=$CHECK_TYPE $EXTRA_OPTIONS + "$SRC_DIR"/configure --enable-werror --enable-checks=$CHECK_TYPE $EXTRA_OPTIONS # Build the project make