File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -304,7 +304,7 @@ jobs:
304304 python3 Tools/ssl/multissltests.py \
305305 --steps=library \
306306 --base-directory "$MULTISSL_DIR" \
307- --${{ matrix.ssllib.name }} ${{ matrix.ssllib.version }} \
307+ ' --${{ matrix.ssllib.name }}' ' ${{ matrix.ssllib.version }}' \
308308 --system Linux
309309 - name : Configure CPython
310310 run : |
@@ -320,7 +320,9 @@ jobs:
320320 - name : Display build info
321321 run : make pythoninfo
322322 - name : Verify python is linked to the right lib
323- run : ./python -c 'import ssl; print(ssl.OPENSSL_VERSION)' | grep -i ${{ matrix.ssllib.name }}
323+ run : |
324+ ./python -c 'import ssl; print(ssl.OPENSSL_VERSION)' \
325+ | grep -iE '${{ matrix.ssllib.name }}.*${{ matrix.ssllib.version }}'
324326 - name : SSL tests
325327 run : ./python Lib/test/ssltests.py
326328
You can’t perform that action at this time.
0 commit comments