From 99ff1baeada74d0f606ce41be7d1448bf9417b49 Mon Sep 17 00:00:00 2001 From: Erik Boasson Date: Tue, 12 Mar 2024 12:58:42 +0100 Subject: [PATCH] Windows + choco OpenSSL 3.2.1 + CMake woes Installing openssl 3.2.1 with Chocolatey if openssl 1.x is already present gives interesting results (it uses the include files from 3.x but the libraries of 1.x). You'd think that uninstalling openssl 1.x, then installing openssl 3.2.1 would solve all problems, but then CMake says it can't find OpenSSL at all, and indeed it can't find the libraries in the locations where it is looking for them. Signed-off-by: Erik Boasson --- .azure/templates/build-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.azure/templates/build-test.yml b/.azure/templates/build-test.yml index 55cfa5860b..0d767796ff 100644 --- a/.azure/templates/build-test.yml +++ b/.azure/templates/build-test.yml @@ -62,7 +62,7 @@ steps: } else { Write-Host "###vso[task.setvariable variable=build_tool_options;]-j 4" } - choco install -y openssl + #choco install -y openssl condition: eq(variables['Agent.OS'], 'Windows_NT') name: setup_windows - task: Cache@2