diff options
author | Christian Heimes <christian@python.org> | 2022-08-29 18:02:00 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-29 18:02:00 (GMT) |
commit | 32a45011e72f9c5c0a61438ec295d2793af51ba9 (patch) | |
tree | 397f8652c9a1f6cecdea1db8296c7520755a1f3a /.github | |
parent | 928a692320ed236fe370e321f85afdcd2bda2d61 (diff) | |
download | cpython-32a45011e72f9c5c0a61438ec295d2793af51ba9.zip cpython-32a45011e72f9c5c0a61438ec295d2793af51ba9.tar.gz cpython-32a45011e72f9c5c0a61438ec295d2793af51ba9.tar.bz2 |
[3.10] gh-94682: Build and test with OpenSSL 1.1.1q (gh-94683) (gh-96391)
Co-authored-by: Christian Heimes <christian@python.org>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b98514a..1545ae8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -190,7 +190,7 @@ jobs: needs: check_source if: needs.check_source.outputs.run_tests == 'true' env: - OPENSSL_VER: 1.1.1n + OPENSSL_VER: 1.1.1q PYTHONSTRICTEXTENSIONBUILD: 1 steps: - uses: actions/checkout@v3 @@ -234,7 +234,7 @@ jobs: strategy: fail-fast: false matrix: - openssl_ver: [1.1.1n, 3.0.2] + openssl_ver: [1.1.1q, 3.0.5] env: OPENSSL_VER: ${{ matrix.openssl_ver }} MULTISSL_DIR: ${{ github.workspace }}/multissl |