Skip to content

Commit

Permalink
Disable unit tests by default
Browse files Browse the repository at this point in the history
  • Loading branch information
christophe-lunarg committed Mar 5, 2024
1 parent fc7518b commit aa3ab2a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion glm/detail/setup.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -976,7 +976,7 @@ namespace detail
# define GLM_STR(x) GLM_STR_HELPER(x)

// Report GLM version
# pragma message ("GLM: version " GLM_STR(GLM_VERSION_MAJOR)"."GLM_STR(GLM_VERSION_MINOR)"."GLM_STR(GLM_VERSION_PATCH))
# pragma message ("GLM: version " GLM_STR(GLM_VERSION_MAJOR) "." GLM_STR(GLM_VERSION_MINOR) "." GLM_STR(GLM_VERSION_PATCH))

// Report C++ language
# if (GLM_LANG & GLM_LANG_CXX20_FLAG) && (GLM_LANG & GLM_LANG_EXT)
Expand Down

0 comments on commit aa3ab2a

Please sign in to comment.