From c2a26d54d5b8376ed091c21b46a2b746fcf06edb Mon Sep 17 00:00:00 2001 From: Ronald Caesar Date: Sun, 18 Jan 2026 18:52:39 -0400 Subject: [PATCH] github/runners: disable tests in debug builds. The tests take 5-8 minutes to run in debug builds, which is ridiculous. Signed-off-by: Ronald Caesar --- .github/workflows/build.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e354be1..48d838f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -139,6 +139,7 @@ jobs: run: cmake --build build --config ${{ matrix.type }} --target all --parallel 4 - name: Run Test Suite + if: matrix.type == 'Release' working-directory: build run: ctest -C ${{ matrix.type }} --output-on-failure