]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-135261: bring back CI job for testing OpenSSL 1.1.1w (#135262)
authorBénédikt Tran <10796600+picnixz@users.noreply.github.com>
Sun, 24 Aug 2025 09:01:37 +0000 (11:01 +0200)
committerGitHub <noreply@github.com>
Sun, 24 Aug 2025 09:01:37 +0000 (09:01 +0000)
This partially reverts commit d83e30caddcbf9482273743d287577517ec735b7
by bringing back the CI job for testing OpenSSL 1.1.1w. Despite this
version being upstream EOL, the rationale for keeping it as follows:

- It most resembles other 1.1.1-work-a-like ssl APIs supported by important vendors.
- Python officially requires OpenSSL 1.1.1 or later, although OpenSSL 3.0 or later
  is recommended for cryptographic modules. Since changing the build requirements
  requires a transition period, we need to keep testing the allowed versions.
- The code base still contains calls to OpenSSL functions that are deprecated since
  OpenSSL 3.0 as well as `ifdef` blocks constrained to OpenSSL 1.1.1.

.github/workflows/build.yml

index d0204df035a72096787d8f07eb6b15d2b46c7fd7..7ff89fc90d367a462eadab28ae24aa2f202e86b8 100644 (file)
@@ -270,7 +270,10 @@ jobs:
       fail-fast: false
       matrix:
         os: [ubuntu-24.04]
-        openssl_ver: [3.0.17, 3.2.5, 3.3.4, 3.4.2, 3.5.2]
+        # Keep 1.1.1w in our list despite it being upstream EOL and otherwise
+        # unsupported as it most resembles other 1.1.1-work-a-like ssl APIs
+        # supported by important vendors such as AWS-LC.
+        openssl_ver: [1.1.1w, 3.0.17, 3.2.5, 3.3.4, 3.4.2, 3.5.2]
         # See Tools/ssl/make_ssl_data.py for notes on adding a new version
     env:
       OPENSSL_VER: ${{ matrix.openssl_ver }}