Skip to content

Commit

Permalink
ci: also exclude msvc
Browse files Browse the repository at this point in the history
  • Loading branch information
SGSSGene committed May 17, 2023
1 parent f79dd4c commit 49f6df5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,8 @@ add_test (mason_tests ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/mason_tests)

if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU" AND CMAKE_CXX_COMPILER_VERSION VERSION_LESS 11
OR CMAKE_CXX_COMPILER_ID STREQUAL "IntelLLVM"
OR CMAKE_CXX_COMPILER_ID STREQUAL "Intel")
OR CMAKE_CXX_COMPILER_ID STREQUAL "Intel"
OR CMAKE_CXX_COMPILER_ID SRTEQUAL "MSVC")
message("Skipping test - known incompatibles with some older compilers")
else()
add_test (NAME app_test_mason
Expand Down

0 comments on commit 49f6df5

Please sign in to comment.