1
0
mirror of https://github.com/Kitware/CMake.git synced 2025-10-14 10:47:59 +08:00

ci: Suppress CPack/RPM tests pending fix for Fedora 39

Issue: #25421
This commit is contained in:
Brad King
2023-11-16 14:43:26 -05:00
parent 18145e8745
commit 9283b20659

View File

@@ -34,6 +34,15 @@ if ("$ENV{CMAKE_CONFIGURATION}" MATCHES "nvhpc_")
)
endif()
if ("$ENV{CMAKE_CONFIGURATION}" MATCHES "fedora39_makefiles")
list(APPEND test_exclusions
# FIXME(#25421): CPack/RPM needs an update for Fedora 39.
"^CPackComponentsForAll-RPM-default$"
"^CPackComponentsForAll-RPM-AllInOne$"
"^CPackComponentsForAll-RPM-OnePackPerGroup$"
)
endif()
string(REPLACE ";" "|" test_exclusions "${test_exclusions}")
if (test_exclusions)
set(test_exclusions "(${test_exclusions})")