Skip to content

Commit

Permalink
Reorder C.I. tests
Browse files Browse the repository at this point in the history
  • Loading branch information
christophe committed Dec 27, 2023
1 parent 9769e07 commit edba7bf
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit edba7bf

Please sign in to comment.