mirror of
https://github.com/boostorg/beast.git
synced 2025-08-02 14:24:31 +02:00
openssl is set to 1.1.1.2100 for x86
At the moment 3.1.1 can only be installed on x64.
This commit is contained in:
committed by
Klemens Morgenstern
parent
915b80a157
commit
902df30f10
7
.github/workflows/ci.yml
vendored
7
.github/workflows/ci.yml
vendored
@@ -411,15 +411,14 @@ jobs:
|
|||||||
echo Install choco
|
echo Install choco
|
||||||
powershell -Command iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))
|
powershell -Command iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))
|
||||||
if "${{matrix.addrmd}}" == "64" (
|
if "${{matrix.addrmd}}" == "64" (
|
||||||
set openssl_install_flag=--x64
|
choco install --no-progress -y openssl --x64
|
||||||
)
|
)
|
||||||
if "${{matrix.addrmd}}" == "32" (
|
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"
|
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 "${{matrix.addrmd}}" == "64" (
|
||||||
if exist "C:\Program Files\OpenSSL\" (
|
if exist "C:\Program Files\OpenSSL\" (
|
||||||
set openssl_install_dir="C:\\Program Files\\OpenSSL"
|
set openssl_install_dir="C:\\Program Files\\OpenSSL"
|
||||||
|
Reference in New Issue
Block a user