diff options
author | Ned Deily <nad@python.org> | 2023-08-18 20:50:11 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-18 20:50:11 (GMT) |
commit | 441797d4ffb12acda257370b9e5e19ed8d6e8a71 (patch) | |
tree | 516056264358d9bf9c1cd4c7620152a0a3cac47a /.github | |
parent | 9a70989a6f5f3f9d6fd36de002dab0ab1e13a9e3 (diff) | |
download | cpython-441797d4ffb12acda257370b9e5e19ed8d6e8a71.zip cpython-441797d4ffb12acda257370b9e5e19ed8d6e8a71.tar.gz cpython-441797d4ffb12acda257370b9e5e19ed8d6e8a71.tar.bz2 |
[3.11] gh-107565: Update multissltests and GitHub CI workflows to use OpenSSL 1.1.1v, 3.0.10, and 3.1.2. (GH-108119)
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e7d3488..8e7d831 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -273,7 +273,7 @@ jobs: needs: check_source if: needs.check_source.outputs.run_tests == 'true' env: - OPENSSL_VER: 1.1.1u + OPENSSL_VER: 1.1.1v PYTHONSTRICTEXTENSIONBUILD: 1 steps: - uses: actions/checkout@v3 @@ -342,7 +342,7 @@ jobs: strategy: fail-fast: false matrix: - openssl_ver: [1.1.1u, 3.0.9, 3.1.1] + openssl_ver: [1.1.1v, 3.0.10, 3.1.2] env: OPENSSL_VER: ${{ matrix.openssl_ver }} MULTISSL_DIR: ${{ github.workspace }}/multissl @@ -394,7 +394,7 @@ jobs: needs: check_source if: needs.check_source.outputs.run_tests == 'true' env: - OPENSSL_VER: 1.1.1u + OPENSSL_VER: 1.1.1v PYTHONSTRICTEXTENSIONBUILD: 1 ASAN_OPTIONS: detect_leaks=0:allocator_may_return_null=1:handle_segv=0 steps: |