summaryrefslogtreecommitdiffstats
path: root/.gitlab
diff options
context:
space:
mode:
authorMarc Chevrier <marc.chevrier@gmail.com>2020-10-07 15:38:28 (GMT)
committerBrad King <brad.king@kitware.com>2020-10-07 16:01:43 (GMT)
commit2549dc7c9388120961c1be4b869fa6847f49eb55 (patch)
treef00288623a9e5cd821e167dbf3bbd8c0ea332977 /.gitlab
parent2e53641d7693a702bbc03ea84f51a137987af4ed (diff)
downloadCMake-2549dc7c9388120961c1be4b869fa6847f49eb55.zip
CMake-2549dc7c9388120961c1be4b869fa6847f49eb55.tar.gz
CMake-2549dc7c9388120961c1be4b869fa6847f49eb55.tar.bz2
FindPython: Enable C language in tests that find the Development component
Since commit 5537ccd814 (FindPython: Tests optimizations, 2020-10-01) some FindPython tests fail because the Development component cannot be found without knowing `CMAKE_LIBRARY_ARCHITECTURE`. Enable at least one language in each of these test cases to get that value. This is consistent with use in practice because the Development component does not make much sense without a language to compile sources anyway. Fixes: #21277
Diffstat (limited to '.gitlab')
-rw-r--r--.gitlab/ci/configure_fedora31_makefiles.cmake7
1 files changed, 3 insertions, 4 deletions
diff --git a/.gitlab/ci/configure_fedora31_makefiles.cmake b/.gitlab/ci/configure_fedora31_makefiles.cmake
index aee100e..8d2454f 100644
--- a/.gitlab/ci/configure_fedora31_makefiles.cmake
+++ b/.gitlab/ci/configure_fedora31_makefiles.cmake
@@ -44,10 +44,9 @@ set(CMake_TEST_FindPatch "ON" CACHE BOOL "")
set(CMake_TEST_FindPNG "ON" CACHE BOOL "")
set(CMake_TEST_FindPostgreSQL "ON" CACHE BOOL "")
set(CMake_TEST_FindProtobuf "ON" CACHE BOOL "")
-#FIXME: Not all FindPython tests pass on Fedora!
-#set(CMake_TEST_FindPython "ON" CACHE BOOL "")
-#set(CMake_TEST_FindPython_NumPy "ON" CACHE BOOL "")
-#set(CMake_TEST_FindPython_PyPy "ON" CACHE BOOL "")
+set(CMake_TEST_FindPython "ON" CACHE BOOL "")
+set(CMake_TEST_FindPython_NumPy "ON" CACHE BOOL "")
+set(CMake_TEST_FindPython_PyPy "ON" CACHE BOOL "")
set(CMake_TEST_FindRuby "ON" CACHE BOOL "")
set(CMake_TEST_FindRuby_RVM "ON" CACHE BOOL "")
set(CMake_TEST_FindSDL "ON" CACHE BOOL "")