]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-123700: Update OpenSSL versions in multissltests and CI (#123701)
authorZachary Ware <zach@python.org>
Wed, 4 Sep 2024 19:29:41 +0000 (14:29 -0500)
committerGitHub <noreply@github.com>
Wed, 4 Sep 2024 19:29:41 +0000 (14:29 -0500)
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.

.github/workflows/build.yml
Tools/ssl/multissltests.py

index efd3162731f77d73ee1c22b594e4aa67347fd7fc..e5f6fd47e7367b693525fc290b709a81dc1c8f0f 100644 (file)
@@ -202,7 +202,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
index 7baf9c29d408c805d0bddebb5d9c5c5cdc0d2668..eae0e0c5e8761f396f11bfd124b96f47d521050f 100755 (executable)
@@ -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 = [