File tree Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Original file line number Diff line number Diff line change 24
24
25
25
- name : Install dependencies
26
26
run : choco install --no-progress -y openssl
27
-
27
+
28
28
- name : Setup Boost
29
29
run : python3 tools/ci.py setup-boost --source-dir=$(pwd)
30
30
@@ -91,12 +91,17 @@ jobs:
91
91
include :
92
92
- { toolset: msvc-14.2, os: windows-2019 }
93
93
- { toolset: msvc-14.3, os: windows-2022 }
94
+ env :
95
+ OPENSSL_ROOT : " C:\\ Program Files\\ OpenSSL-Win64"
94
96
steps :
95
97
- name : Checkout
96
98
uses : actions/checkout@v3
97
99
98
100
- name : Install dependencies
99
101
run : choco install --no-progress -y openssl
102
+
103
+ - name : Setup user-config.jam
104
+ run : cp tools/user-config.jam "$USERPROFILE/"
100
105
101
106
- name : Setup Boost
102
107
run : python3 tools/ci.py setup-boost --source-dir=$(pwd)
Original file line number Diff line number Diff line change
1
+ # Used on CI. This is required on Windows to make b2 find openssl
2
+
3
+ import os ;
4
+
5
+ local OPENSSL_ROOT = [ os.environ OPENSSL_ROOT ] ;
6
+
7
+ project
8
+ : requirements
9
+ <include>$(OPENSSL_ROOT)/include
10
+ <variant>debug:<library-path>$(OPENSSL_ROOT)/lib
11
+ <target-os>windows<variant>debug:<library-path>$(OPENSSL_ROOT)/debug/lib
12
+ <variant>release:<library-path>$(OPENSSL_ROOT)/lib
13
+ ;
You can’t perform that action at this time.
0 commit comments