Force Windows CI to use OpenSSL 3.1.1

There's something wrong with chocolatey's OpenSSL 3.2.0 package that
causes cmake to not be able to find libcrypto even though it's clearly
in the directory. Pinning to 3.1.1 fixes the build issue.

(cherry picked from commit 5a7c482a0f)
This commit is contained in:
Tim Wojtulewicz 2024-01-26 13:10:51 -07:00 committed by Tim Wojtulewicz
parent a69a584d25
commit 269fdcdcfc

View file

@ -18,7 +18,7 @@ RUN choco install -y --no-progress sed
RUN choco install -y --no-progress winflexbison3
RUN choco install -y --no-progress msysgit
RUN choco install -y --no-progress python
RUN choco install -y --no-progress openssl
RUN choco install -y --no-progress openssl --version=3.1.1
# Set working environment.
SHELL [ "cmd", "/c" ]