File tree Expand file tree Collapse file tree 2 files changed +10
-5
lines changed Expand file tree Collapse file tree 2 files changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -195,13 +195,14 @@ jobs:
195195
196196 build_ubuntu_ssltests :
197197 name : ' Ubuntu SSL tests with OpenSSL'
198- runs-on : ubuntu-22.04
198+ runs-on : ${{ matrix.os }}
199199 timeout-minutes : 60
200200 needs : check_source
201201 if : needs.check_source.outputs.run_tests == 'true'
202202 strategy :
203203 fail-fast : false
204204 matrix :
205+ os : [ubuntu-22.04]
205206 openssl_ver : [3.0.15, 3.1.7, 3.2.3, 3.3.2]
206207 env :
207208 OPENSSL_VER : ${{ matrix.openssl_ver }}
@@ -231,7 +232,7 @@ jobs:
231232 uses : actions/cache@v4
232233 with :
233234 path : ./multissl/openssl/${{ env.OPENSSL_VER }}
234- key : ${{ runner .os }}-multissl-openssl-${{ env.OPENSSL_VER }}
235+ key : ${{ matrix .os }}-multissl-openssl-${{ env.OPENSSL_VER }}
235236 - name : Install OpenSSL
236237 if : steps.cache-openssl.outputs.cache-hit != 'true'
237238 run : python3 Tools/ssl/multissltests.py --steps=library --base-directory $MULTISSL_DIR --openssl $OPENSSL_VER --system Linux
@@ -410,7 +411,7 @@ jobs:
410411 uses : actions/cache@v4
411412 with :
412413 path : ./multissl/openssl/${{ env.OPENSSL_VER }}
413- key : ${{ runner .os }}-multissl-openssl-${{ env.OPENSSL_VER }}
414+ key : ${{ matrix .os }}-multissl-openssl-${{ env.OPENSSL_VER }}
414415 - name : Install OpenSSL
415416 if : steps.cache-openssl.outputs.cache-hit != 'true'
416417 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 1414 build_ubuntu_reusable :
1515 name : ' build and test'
1616 timeout-minutes : 60
17- runs-on : ubuntu-22.04
17+ runs-on : ${{ matrix.os }}
18+ strategy :
19+ fail-fast : false
20+ matrix :
21+ os : [ubuntu-22.04]
1822 env :
1923 FORCE_COLOR : 1
2024 OPENSSL_VER : 3.0.15
3640 uses : actions/cache@v4
3741 with :
3842 path : ./multissl/openssl/${{ env.OPENSSL_VER }}
39- key : ${{ runner .os }}-multissl-openssl-${{ env.OPENSSL_VER }}
43+ key : ${{ matrix .os }}-multissl-openssl-${{ env.OPENSSL_VER }}
4044 - name : Install OpenSSL
4145 if : steps.cache-openssl.outputs.cache-hit != 'true'
4246 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