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 <github43132@proton.me>
This commit is contained in:
Ronald Caesar
2026-01-18 18:52:39 -04:00
parent a997752a50
commit c2a26d54d5

View File

@@ -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