[3.9] bpo-38820: Test with OpenSSL 3.0.0 final (GH-28205) (GH-28217)

Signed-off-by: Christian Heimes <christian@python.org>.
(cherry picked from commit cc7c680194)

Co-authored-by: Christian Heimes <christian@python.org>
This commit is contained in:
Łukasz Langa 2021-09-08 19:01:25 +02:00 committed by GitHub
parent a328a13b70
commit 7a6178a7cd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 2 deletions

View file

@ -196,7 +196,7 @@ jobs:
strategy:
fail-fast: false
matrix:
openssl_ver: [1.0.2u, 1.1.0l, 1.1.1l, 3.0.0-beta1]
openssl_ver: [1.0.2u, 1.1.0l, 1.1.1l, 3.0.0]
env:
OPENSSL_VER: ${{ matrix.openssl_ver }}
MULTISSL_DIR: ${{ github.workspace }}/multissl

View file

@ -50,7 +50,7 @@ OPENSSL_OLD_VERSIONS = [
OPENSSL_RECENT_VERSIONS = [
"1.1.1l",
"3.0.0-beta1"
"3.0.0"
]
LIBRESSL_OLD_VERSIONS = [
@ -410,6 +410,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):