diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2024-09-04 21:31:01 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-04 21:31:01 (GMT) |
commit | ad944b5e1f304be1a8c2cc03e9f15005bcb97108 (patch) | |
tree | 5378eb7bd6775661b74857cf2db04a39f8484591 | |
parent | 9b541ac9ac09a15b665c360b33e89cc5ce8b92c1 (diff) | |
download | cpython-ad944b5e1f304be1a8c2cc03e9f15005bcb97108.zip cpython-ad944b5e1f304be1a8c2cc03e9f15005bcb97108.tar.gz cpython-ad944b5e1f304be1a8c2cc03e9f15005bcb97108.tar.bz2 |
[3.13] gh-123700: Update OpenSSL versions in multissltests and CI (GH-123702)
Remove EOL 1.1.1w from CI and move it to the 'old' set in multissltests,
add latest 3.3.2 to both CI and multissltests.
(cherry picked from commit d83e30caddcbf9482273743d287577517ec735b7)
Co-authored-by: Zachary Ware <zach@python.org>
-rw-r--r-- | .github/workflows/build.yml | 2 | ||||
-rwxr-xr-x | Tools/ssl/multissltests.py | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 82224cc..ecd9446 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -245,7 +245,7 @@ jobs: strategy: fail-fast: false matrix: - openssl_ver: [1.1.1w, 3.0.15, 3.1.7, 3.2.3] + openssl_ver: [3.0.15, 3.1.7, 3.2.3, 3.3.2] env: OPENSSL_VER: ${{ matrix.openssl_ver }} MULTISSL_DIR: ${{ github.workspace }}/multissl diff --git a/Tools/ssl/multissltests.py b/Tools/ssl/multissltests.py index 7baf9c2..eae0e0c 100755 --- a/Tools/ssl/multissltests.py +++ b/Tools/ssl/multissltests.py @@ -43,13 +43,14 @@ import tarfile log = logging.getLogger("multissl") OPENSSL_OLD_VERSIONS = [ + "1.1.1w", ] OPENSSL_RECENT_VERSIONS = [ - "1.1.1w", "3.0.15", "3.1.7", "3.2.3", + "3.3.2", ] LIBRESSL_OLD_VERSIONS = [ |