From edba7bf9a3994489cdc178af50c9bf17077eeefc Mon Sep 17 00:00:00 2001 From: christophe Date: Wed, 27 Dec 2023 09:54:37 +0100 Subject: [PATCH] Reorder C.I. tests --- .github/workflows/ci.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ed207eaea..62af02333 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,9 +31,10 @@ jobs: - name: CMake Version run: cmake --version - name: Run with automagic detection - run: cmake -S. -B ./build_auto - run: ctest --verbose -C ${{matrix.config}} --test-dir ./build_auto - - run: cmake --build ./build_auto --config ${{matrix.config}} + run: + cmake -S. -B ./build_auto | + ctest --verbose -C ${{matrix.config}} --test-dir ./build_auto | + cmake --build ./build_auto --config ${{matrix.config}} - run: cmake -S. -B ./build_pure_std -DGLM_TEST_FORCE_PURE=ON -DGLM_TEST_ENABLE_CXX_${{matrix.std}}=ON - run: cmake -S. -B ./build_pure_ext -DGLM_TEST_FORCE_PURE=ON -DGLM_TEST_ENABLE_CXX_${{matrix.std}}=ON -DGLM_TEST_ENABLE_LANG_EXTENSIONS=ON - run: cmake -S. -B ./build_sse2_std -DGLM_TEST_ENABLE_SIMD_SSE2=ON -DGLM_TEST_ENABLE_CXX_${{matrix.std}}=ON