]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-38820: Test with OpenSSL 3.0.0 final (GH-28205)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Wed, 8 Sep 2021 08:25:58 +0000 (01:25 -0700)
committerGitHub <noreply@github.com>
Wed, 8 Sep 2021 08:25:58 +0000 (01:25 -0700)
Signed-off-by: Christian Heimes <christian@python.org>
(cherry picked from commit cc7c6801945c6a7373553b78bd899ce09681ec0a)

Co-authored-by: Christian Heimes <christian@python.org>
.github/workflows/build.yml
Tools/ssl/multissltests.py

index 2ccd351d8682e3c3eea219848abfcbd12ddfe901..0607a565514bb47349e64a241b9ea410fa0acd50 100644 (file)
@@ -206,7 +206,7 @@ jobs:
     strategy:
       fail-fast: false
       matrix:
-        openssl_ver: [1.1.1l, 3.0.0-beta1]
+        openssl_ver: [1.1.1l, 3.0.0]
     env:
       OPENSSL_VER: ${{ matrix.openssl_ver }}
       MULTISSL_DIR: ${{ github.workspace }}/multissl
index 9b46c8c7c09d5c9923e4dbb2b8488cf4af0cf9e3..7bdfd0b92bacf1e4053c0bdd8841f80046f1646a 100755 (executable)
@@ -48,7 +48,7 @@ OPENSSL_OLD_VERSIONS = [
 
 OPENSSL_RECENT_VERSIONS = [
     "1.1.1l",
-    "3.0.0-beta1"
+    "3.0.0"
 ]
 
 LIBRESSL_OLD_VERSIONS = [
@@ -412,6 +412,10 @@ class BuildOpenSSL(AbstractBuilder):
             ["make", "-j1", "install_ssldirs", "install_fips"],
             cwd=self.build_dir
         )
+        if not os.path.isdir(self.lib_dir):
+            # 3.0.0-beta2 uses lib64 on 64 bit platforms
+            lib64 = self.lib_dir + "64"
+            os.symlink(lib64, self.lib_dir)
 
     @property
     def short_version(self):