From 72c0ca08926f5cf35d7e41a9002ec4b00a209b9d Mon Sep 17 00:00:00 2001 From: Jeffrey Morris Date: Tue, 14 Oct 2025 18:48:16 -0500 Subject: [PATCH] Treat compilation warnings as errors on all CI platforms --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e332c959..e79c3b22 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -32,7 +32,7 @@ jobs: uses: actions/checkout@v4 - name: Configure - run: cmake -B build ${{matrix.platform.flags}} ${{matrix.config.flags}} + run: cmake -B build -DCMAKE_COMPILE_WARNING_AS_ERROR=ON ${{matrix.platform.flags}} ${{matrix.config.flags}} - name: Build run: cmake --build build --config Release