use CMake 3.29.0 in tests #1566
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
Build tests with CMake 3.29.0 to resolve Windows OpenSSL task failures.
Background & Motivation
This PR is intended to address Windows OpenSSL tasks failing to locate OpenSSL. For example, sasl-cyrus-openssl-windows-2019-vs2017-x64-compile fails with:
This appears to have been caused by a change in the OpenSSL install on Windows hosts to use
choco install
as part of DEVPROD-5184. Notably, this change results in Windows tasks testing with OpenSSL 3.I expect the issue is addressed by https://gitlab.kitware.com/cmake/cmake/-/issues/25702. Upgrading CMake to 3.29.0 resolves the issue. Using the previous release, CMake 3.28.4, results in the same error.
Here is a patch build with the
sasl-cyrus-openssl-windows-2019-vs2017-x64-compile
task passing. There are several other task failures that this PR does not address.