diff --git a/cmake/QtCMakeVersionHelpers.cmake b/cmake/QtCMakeVersionHelpers.cmake index c2349bd5d15..3a3ba0fc750 100644 --- a/cmake/QtCMakeVersionHelpers.cmake +++ b/cmake/QtCMakeVersionHelpers.cmake @@ -169,9 +169,8 @@ 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 enabled. - # TODO: Disable it once provisioning is merged. - set(allow_any_version_in_ci TRUE) + # Current state is that this check is disabled. + set(allow_any_version_in_ci FALSE) 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 e0046c4ce16..58c7aa80417 100644 --- a/cmake/QtPublicCMakeVersionHelpers.cmake +++ b/cmake/QtPublicCMakeVersionHelpers.cmake @@ -55,9 +55,8 @@ 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 enabled. - # TODO: Disable it once provisioning is merged. - set(allow_any_version_in_ci TRUE) + # Current state is that this check is disabled. + set(allow_any_version_in_ci FALSE) if(allow_any_version_in_ci AND DEFINED ENV{COIN_UNIQUE_JOB_ID}) set(allow_any_version TRUE)