Skip to content

Commit

Permalink
openssl is set to 1.1.1.2100 for x86
Browse files Browse the repository at this point in the history
At the moment 3.1.1 can only be installed on x64.
  • Loading branch information
klemens-morgenstern committed Aug 18, 2023
1 parent 915b80a commit 902df30
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -411,15 +411,14 @@ jobs:
echo Install choco
powershell -Command iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))
if "${{matrix.addrmd}}" == "64" (
set openssl_install_flag=--x64
choco install --no-progress -y openssl --x64
)
if "${{matrix.addrmd}}" == "32" (
set openssl_install_flag=--x86
; as of 17.08.23 openssl 3 doesn't support x86
set openssl_install_dir="C:\\Program Files (x86)\\OpenSSL-Win32"
choco install --no-progress -y openssl --forcex86 --version 1.1.1.2100
)
choco install --no-progress -y openssl %openssl_install_flag%
if "${{matrix.addrmd}}" == "64" (
if exist "C:\Program Files\OpenSSL\" (
set openssl_install_dir="C:\\Program Files\\OpenSSL"
Expand Down

0 comments on commit 902df30

Please sign in to comment.