From d7e8e60f6387bd2ae9dc0c0ab3735bbeadd9ad45 Mon Sep 17 00:00:00 2001 From: Christophe Date: Tue, 5 Mar 2024 15:49:49 +0100 Subject: [PATCH] Disable unit tests by default --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f4e697a0a5..a7f3bf4a9e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -130,8 +130,8 @@ jobs: run: cmake --version - name: Run with automagic detection run: | - cmake -S. -B ./build_auto - cmake --build ./build_auto --config ${{matrix.config}} -DGLM_BUILD_TESTS=ON + cmake -S. -B ./build_auto -DGLM_BUILD_TESTS=ON + cmake --build ./build_auto --config ${{matrix.config}} ctest --verbose -C ${{matrix.config}} --test-dir ./build_auto - name: Run with GLM_FORCE_PURE