File tree 2 files changed +10
-5
lines changed
2 files changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -227,13 +227,14 @@ jobs:
227
227
228
228
build_ubuntu_ssltests :
229
229
name : ' Ubuntu SSL tests with OpenSSL'
230
- runs-on : ubuntu-20.04
230
+ runs-on : ${{ matrix.os }}
231
231
timeout-minutes : 60
232
232
needs : check_source
233
233
if : needs.check_source.outputs.run_tests == 'true' && needs.check_source.outputs.run_ssl_tests == 'true'
234
234
strategy :
235
235
fail-fast : false
236
236
matrix :
237
+ os : [ubuntu-20.04]
237
238
openssl_ver : [1.1.1w, 3.0.13, 3.1.5, 3.2.1]
238
239
env :
239
240
OPENSSL_VER : ${{ matrix.openssl_ver }}
@@ -263,7 +264,7 @@ jobs:
263
264
uses : actions/cache@v4
264
265
with :
265
266
path : ./multissl/openssl/${{ env.OPENSSL_VER }}
266
- key : ${{ runner .os }}-multissl-openssl-${{ env.OPENSSL_VER }}
267
+ key : ${{ matrix .os }}-multissl-openssl-${{ env.OPENSSL_VER }}
267
268
- name : Install OpenSSL
268
269
if : steps.cache-openssl.outputs.cache-hit != 'true'
269
270
run : python3 Tools/ssl/multissltests.py --steps=library --base-directory $MULTISSL_DIR --openssl $OPENSSL_VER --system Linux
@@ -320,7 +321,7 @@ jobs:
320
321
uses : actions/cache@v4
321
322
with :
322
323
path : ./multissl/openssl/${{ env.OPENSSL_VER }}
323
- key : ${{ runner .os }}-multissl-openssl-${{ env.OPENSSL_VER }}
324
+ key : ${{ matrix .os }}-multissl-openssl-${{ env.OPENSSL_VER }}
324
325
- name : Install OpenSSL
325
326
if : steps.cache-openssl.outputs.cache-hit != 'true'
326
327
run : python3 Tools/ssl/multissltests.py --steps=library --base-directory $MULTISSL_DIR --openssl $OPENSSL_VER --system Linux
Original file line number Diff line number Diff line change 12
12
build_ubuntu_reusable :
13
13
name : ' build and test'
14
14
timeout-minutes : 60
15
- runs-on : ubuntu-20.04
15
+ runs-on : ${{ matrix.os }}
16
+ strategy :
17
+ fail-fast : false
18
+ matrix :
19
+ os : [ubuntu-20.04]
16
20
env :
17
21
OPENSSL_VER : 3.0.13
18
22
PYTHONSTRICTEXTENSIONBUILD : 1
32
36
uses : actions/cache@v4
33
37
with :
34
38
path : ./multissl/openssl/${{ env.OPENSSL_VER }}
35
- key : ${{ runner .os }}-multissl-openssl-${{ env.OPENSSL_VER }}
39
+ key : ${{ matrix .os }}-multissl-openssl-${{ env.OPENSSL_VER }}
36
40
- name : Install OpenSSL
37
41
if : steps.cache-openssl.outputs.cache-hit != 'true'
38
42
run : python3 Tools/ssl/multissltests.py --steps=library --base-directory $MULTISSL_DIR --openssl $OPENSSL_VER --system Linux
You can’t perform that action at this time.
0 commit comments