|
|
@@ -24,6 +24,8 @@ jobs:
|
|
|
- run: echo "🍏 This job's status is ${{ job.status }}."
|
|
|
- name: CMake Version
|
|
|
run: cmake --version
|
|
|
+ - run: cmake -S. -B ./build_auto
|
|
|
+ - run: cmake -S. -B ./build_unknown -DGLM_DISABLE_AUTO_DETECTION=ON
|
|
|
- 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
|
|
|
@@ -32,6 +34,8 @@ jobs:
|
|
|
- run: cmake -S. -B ./build_avx1_ext -DGLM_TEST_ENABLE_SIMD_AVX=ON -DGLM_TEST_ENABLE_CXX_${{matrix.std}}=ON -DGLM_TEST_ENABLE_LANG_EXTENSIONS=ON
|
|
|
- run: cmake -S. -B ./build_avx2_std -DGLM_TEST_ENABLE_SIMD_AVX2=ON -DGLM_TEST_ENABLE_CXX_${{matrix.std}}=ON
|
|
|
- run: cmake -S. -B ./build_avx2_ext -DGLM_TEST_ENABLE_SIMD_AVX2=ON -DGLM_TEST_ENABLE_CXX_${{matrix.std}}=ON -DGLM_TEST_ENABLE_LANG_EXTENSIONS=ON
|
|
|
+ - run: cmake --build ./build_auto --config ${{matrix.config}}
|
|
|
+ - run: cmake --build ./build_unknown --config ${{matrix.config}}
|
|
|
- run: cmake --build ./build_pure_std --config ${{matrix.config}}
|
|
|
- run: cmake --build ./build_pure_ext --config ${{matrix.config}}
|
|
|
- run: cmake --build ./build_sse2_std --config ${{matrix.config}}
|
|
|
@@ -40,6 +44,8 @@ jobs:
|
|
|
- run: cmake --build ./build_avx1_ext --config ${{matrix.config}}
|
|
|
- run: cmake --build ./build_avx2_std --config ${{matrix.config}}
|
|
|
- run: cmake --build ./build_avx2_ext --config ${{matrix.config}}
|
|
|
+ - run: ctest --verbose -C ${{matrix.config}} --test-dir ./build_auto
|
|
|
+ - run: ctest --verbose -C ${{matrix.config}} --test-dir ./build_unknown
|
|
|
- run: ctest --verbose -C ${{matrix.config}} --test-dir ./build_pure_std
|
|
|
- run: ctest --verbose -C ${{matrix.config}} --test-dir ./build_pure_ext
|
|
|
- run: ctest --verbose -C ${{matrix.config}} --test-dir ./build_sse2_std
|
|
|
@@ -72,6 +78,8 @@ jobs:
|
|
|
run: gcc --version
|
|
|
- name: CMake Version
|
|
|
run: cmake --version
|
|
|
+ - run: cmake -S. -B ./build_auto
|
|
|
+ - run: cmake -S. -B ./build_unknown -DGLM_DISABLE_AUTO_DETECTION=ON
|
|
|
- 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
|
|
|
@@ -80,6 +88,8 @@ jobs:
|
|
|
- run: cmake -S. -B ./build_avx1_ext -DGLM_TEST_ENABLE_SIMD_AVX=ON -DGLM_TEST_ENABLE_CXX_${{matrix.std}}=ON -DGLM_TEST_ENABLE_LANG_EXTENSIONS=ON
|
|
|
- run: cmake -S. -B ./build_avx2_std -DGLM_TEST_ENABLE_SIMD_AVX2=ON -DGLM_TEST_ENABLE_CXX_${{matrix.std}}=ON
|
|
|
- run: cmake -S. -B ./build_avx2_ext -DGLM_TEST_ENABLE_SIMD_AVX2=ON -DGLM_TEST_ENABLE_CXX_${{matrix.std}}=ON -DGLM_TEST_ENABLE_LANG_EXTENSIONS=ON
|
|
|
+ - run: cmake --build ./build_auto --config ${{matrix.config}}
|
|
|
+ - run: cmake --build ./build_unknown --config ${{matrix.config}}
|
|
|
- run: cmake --build ./build_pure_std --config ${{matrix.config}}
|
|
|
- run: cmake --build ./build_pure_ext --config ${{matrix.config}}
|
|
|
- run: cmake --build ./build_sse2_std --config ${{matrix.config}}
|
|
|
@@ -88,6 +98,8 @@ jobs:
|
|
|
- run: cmake --build ./build_avx1_ext --config ${{matrix.config}}
|
|
|
- run: cmake --build ./build_avx2_std --config ${{matrix.config}}
|
|
|
- run: cmake --build ./build_avx2_ext --config ${{matrix.config}}
|
|
|
+ - run: ctest --verbose -C ${{matrix.config}} --test-dir ./build_auto
|
|
|
+ - run: ctest --verbose -C ${{matrix.config}} --test-dir ./build_unknown
|
|
|
- run: ctest --verbose -C ${{matrix.config}} --test-dir ./build_pure_std
|
|
|
- run: ctest --verbose -C ${{matrix.config}} --test-dir ./build_pure_ext
|
|
|
- run: ctest --verbose -C ${{matrix.config}} --test-dir ./build_sse2_std
|
|
|
@@ -120,6 +132,8 @@ jobs:
|
|
|
run: cmake --version
|
|
|
- name: Clang Version
|
|
|
run: clang --version
|
|
|
+ - run: cmake -S. -B ./build_auto
|
|
|
+ - run: cmake -S. -B ./build_unknown -DGLM_DISABLE_AUTO_DETECTION=ON
|
|
|
- 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
|
|
|
@@ -128,6 +142,8 @@ jobs:
|
|
|
- run: cmake -S. -B ./build_avx1_ext -DGLM_TEST_ENABLE_SIMD_AVX=ON -DGLM_TEST_ENABLE_CXX_${{matrix.std}}=ON -DGLM_TEST_ENABLE_LANG_EXTENSIONS=ON
|
|
|
- run: cmake -S. -B ./build_avx2_std -DGLM_TEST_ENABLE_SIMD_AVX2=ON -DGLM_TEST_ENABLE_CXX_${{matrix.std}}=ON
|
|
|
- run: cmake -S. -B ./build_avx2_ext -DGLM_TEST_ENABLE_SIMD_AVX2=ON -DGLM_TEST_ENABLE_CXX_${{matrix.std}}=ON -DGLM_TEST_ENABLE_LANG_EXTENSIONS=ON
|
|
|
+ - run: cmake --build ./build_auto --config ${{matrix.config}}
|
|
|
+ - run: cmake --build ./build_unknown --config ${{matrix.config}}
|
|
|
- run: cmake --build ./build_pure_std --config ${{matrix.config}}
|
|
|
- run: cmake --build ./build_pure_ext --config ${{matrix.config}}
|
|
|
- run: cmake --build ./build_sse2_std --config ${{matrix.config}}
|
|
|
@@ -136,6 +152,8 @@ jobs:
|
|
|
- run: cmake --build ./build_avx1_ext --config ${{matrix.config}}
|
|
|
- run: cmake --build ./build_avx2_std --config ${{matrix.config}}
|
|
|
- run: cmake --build ./build_avx2_ext --config ${{matrix.config}}
|
|
|
+ - run: ctest --verbose -C ${{matrix.config}} --test-dir ./build_auto
|
|
|
+ - run: ctest --verbose -C ${{matrix.config}} --test-dir ./build_unknown
|
|
|
- run: ctest --verbose -C ${{matrix.config}} --test-dir ./build_pure_std
|
|
|
- run: ctest --verbose -C ${{matrix.config}} --test-dir ./build_pure_ext
|
|
|
- run: ctest --verbose -C ${{matrix.config}} --test-dir ./build_sse2_std
|