Browse Source

Merge topic 'ci-nmake-jom'

9f5c872ed1 ci: Exclude spuriously failing test from JOM nightly CI job

Acked-by: Kitware Robot <[email protected]>
Merge-request: !6797
Brad King 4 years ago
parent
commit
114c7e72eb
1 changed files with 7 additions and 0 deletions
  1. 7 0
      .gitlab/ci/ctest_exclusions.cmake

+ 7 - 0
.gitlab/ci/ctest_exclusions.cmake

@@ -20,6 +20,13 @@ if ("$ENV{CMAKE_CONFIGURATION}" MATCHES "_asan")
     )
 endif()
 
+if ("$ENV{CMAKE_CONFIGURATION}" MATCHES "_jom")
+  list(APPEND test_exclusions
+    # JOM often fails with "Couldn't change working directory to ...".
+    "^ExternalProject$"
+    )
+endif()
+
 string(REPLACE ";" "|" test_exclusions "${test_exclusions}")
 if (test_exclusions)
   set(test_exclusions "(${test_exclusions})")