From 28e74a08445fd3c1d8aa1c0d8ae94a8ac1b87e5f Mon Sep 17 00:00:00 2001 From: Jelte Fennema-Nio Date: Thu, 3 Oct 2024 22:22:05 +0200 Subject: [PATCH] Revert: Use -Werror in CI (#237) (#249) It seems my `-Werror` flag addition was waiting until the next time CI thought it was necessary to rebuild DuckDB to blow up our build. This reverts the change for now to fix the build on the main branch. --- .github/workflows/build_and_test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build_and_test.yaml b/.github/workflows/build_and_test.yaml index e4de1c91..c512e09a 100644 --- a/.github/workflows/build_and_test.yaml +++ b/.github/workflows/build_and_test.yaml @@ -112,7 +112,7 @@ jobs: id: build run: | pushd duckdb - make -j8 install CFLAGS=-Werror CXXFLAGS=-Werror + make -j8 install - name: Run make installcheck id: installcheck