diff --git a/cmake/QtCMakeVersionHelpers.cmake b/cmake/QtCMakeVersionHelpers.cmake index 3a3ba0fc750..c2349bd5d15 100644 --- a/cmake/QtCMakeVersionHelpers.cmake +++ b/cmake/QtCMakeVersionHelpers.cmake @@ -169,8 +169,9 @@ function(qt_internal_force_allow_unsuitable_cmake_version_for_building_qt out_va # Temporarily allow any version when building in Qt's CI, so we can decouple the provisioning # of the minimum CMake version from the bump of the minimum CMake version. # The COIN_UNIQUE_JOB_ID env var is set in Qt's CI for both build and test work items. - # Current state is that this check is disabled. - set(allow_any_version_in_ci FALSE) + # Current state is that this check is enabled. + # TODO: Disable it once provisioning is merged. + set(allow_any_version_in_ci TRUE) if(allow_any_version_in_ci AND DEFINED ENV{COIN_UNIQUE_JOB_ID}) set(allow_any_version TRUE) diff --git a/cmake/QtPublicCMakeVersionHelpers.cmake b/cmake/QtPublicCMakeVersionHelpers.cmake index 58c7aa80417..e0046c4ce16 100644 --- a/cmake/QtPublicCMakeVersionHelpers.cmake +++ b/cmake/QtPublicCMakeVersionHelpers.cmake @@ -55,8 +55,9 @@ function(__qt_internal_force_allow_unsuitable_cmake_version_for_using_qt out_var # Temporarily allow any version when using Qt in Qt's CI, so we can decouple the provisioning # of the minimum CMake version from the bump of the minimum CMake version. # The COIN_UNIQUE_JOB_ID env var is set in Qt's CI for both build and test work items. - # Current state is that this check is disabled. - set(allow_any_version_in_ci FALSE) + # Current state is that this check is enabled. + # TODO: Disable it once provisioning is merged. + set(allow_any_version_in_ci TRUE) if(allow_any_version_in_ci AND DEFINED ENV{COIN_UNIQUE_JOB_ID}) set(allow_any_version TRUE)