summaryrefslogtreecommitdiff
path: root/.gitlab/ci/configure_debian10_ninja.cmake
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2022-02-21 17:57:35 -0500
committerBrad King <brad.king@kitware.com>2022-02-22 14:01:36 -0500
commitc4b305da6390f4fd08dcb60e490f8807b72911b2 (patch)
tree2731fee41d6b3125ee85796d79357a1d16400a04 /.gitlab/ci/configure_debian10_ninja.cmake
parentf9526f39a10da53563fe056480a1fdc505de5f97 (diff)
downloadcmake-c4b305da6390f4fd08dcb60e490f8807b72911b2.tar.gz
ci: Explicitly enable CTest.Update{BZR,CVS,GIT,HG,P4,SVN} tests
Avoid relying on heuristics to enable these tests. Be sure they run in CI where expected.
Diffstat (limited to '.gitlab/ci/configure_debian10_ninja.cmake')
-rw-r--r--.gitlab/ci/configure_debian10_ninja.cmake9
1 files changed, 9 insertions, 0 deletions
diff --git a/.gitlab/ci/configure_debian10_ninja.cmake b/.gitlab/ci/configure_debian10_ninja.cmake
index d50ab1f05a..1be53810c6 100644
--- a/.gitlab/ci/configure_debian10_ninja.cmake
+++ b/.gitlab/ci/configure_debian10_ninja.cmake
@@ -1,3 +1,12 @@
+set(CMake_TEST_CTestUpdate_BZR "ON" CACHE BOOL "")
+set(CMake_TEST_CTestUpdate_CVS "ON" CACHE BOOL "")
+set(CMake_TEST_CTestUpdate_GIT "ON" CACHE BOOL "")
+set(CMake_TEST_CTestUpdate_HG "ON" CACHE BOOL "")
+set(CMake_TEST_CTestUpdate_SVN "ON" CACHE BOOL "")
+if (NOT "$ENV{CMAKE_CI_NIGHTLY}" STREQUAL "")
+ set(CMake_TEST_CTestUpdate_P4 "ON" CACHE BOOL "")
+endif()
+
set(CMake_TEST_FindALSA "ON" CACHE BOOL "")
set(CMake_TEST_FindBLAS "All;static=1;Generic" CACHE STRING "")
set(CMake_TEST_FindBoost "ON" CACHE BOOL "")