Skip to content

Commit 4b33b4e

Browse files
committed
fixup! gh-136728: Combine OpenSSL and AWS-LC CI configurations
Quote `${{ }}` substitutions in commands.
1 parent 0b98838 commit 4b33b4e

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)