2
0
mirror of https://github.com/boostorg/redis.git synced 2026-01-19 04:42:09 +00:00

OpenSSL win fix in CI

This commit is contained in:
Ruben Perez
2023-10-05 12:02:31 +02:00
parent a7b3fbdd9a
commit b7b4f8f449
2 changed files with 6 additions and 7 deletions

View File

@@ -101,7 +101,7 @@ jobs:
run: choco install --no-progress -y openssl
- name: Setup user-config.jam
run: cp tools/user-config.jam "$USERPROFILE/"
run: cp tools/user-config.jam "${HOMEDRIVE}${HOMEPATH}/"
- name: Setup Boost
run: python3 tools/ci.py setup-boost --source-dir=$(pwd)

View File

@@ -4,10 +4,9 @@ import os ;
local OPENSSL_ROOT = [ os.environ OPENSSL_ROOT ] ;
project
: requirements
using openssl : :
<include>$(OPENSSL_ROOT)/include
<variant>debug:<library-path>$(OPENSSL_ROOT)/lib
<target-os>windows<variant>debug:<library-path>$(OPENSSL_ROOT)/debug/lib
<variant>release:<library-path>$(OPENSSL_ROOT)/lib
<search>$(OPENSSL_ROOT)/lib
<ssl-name>libssl
<crypto-name>libcrypto
;