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.
This commit is contained in:
Tim Wojtulewicz 2024-01-26 13:10:51 -07:00
parent 4d6ec9a533
commit 5a7c482a0f

View file

@ -22,7 +22,7 @@ RUN choco install -y --no-progress sed
RUN choco install -y --no-progress winflexbison3 RUN choco install -y --no-progress winflexbison3
RUN choco install -y --no-progress msysgit RUN choco install -y --no-progress msysgit
RUN choco install -y --no-progress python 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. # Set working environment.
SHELL [ "cmd", "/c" ] SHELL [ "cmd", "/c" ]