File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -159,18 +159,19 @@ jobs:
159
159
version : 3.3.0
160
160
- name : openssl
161
161
version : 3.2.0
162
- dl-path : /
163
162
- name : openssl
164
163
version : 1.1.1w
165
- dl-path : /
166
164
- name : openssl
167
165
version : 1.1.0l
166
+ old : true
168
167
dl-path : /old/1.1.0
169
168
- name : openssl
170
169
version : 1.0.2u
170
+ old : true
171
171
dl-path : /old/1.0.2
172
172
- name : openssl
173
173
version : 1.0.1u
174
+ old : true
174
175
dl-path : /old/1.0.1
175
176
include :
176
177
- target : x86_64-unknown-linux-gnu
@@ -257,7 +258,11 @@ jobs:
257
258
run : |
258
259
case "${{ matrix.library.name }}" in
259
260
"openssl")
260
- url="https://www.openssl.org/source${{ matrix.library.dl-path }}/openssl-${{ matrix.library.version }}.tar.gz"
261
+ if [[ "${{ matrix.library.old }}" == "true" ]]; then
262
+ url="https://www.openssl.org/source${{ matrix.library.dl-path }}/openssl-${{ matrix.library.version }}.tar.gz"
263
+ else
264
+ url="https://github.com/openssl/openssl/releases/download/openssl-${{ matrix.library.version }}/openssl-${{ matrix.library.version }}.tar.gz"
265
+ fi
261
266
tar_flags="--strip-components=1"
262
267
;;
263
268
"libressl")
You can’t perform that action at this time.
0 commit comments