mirror of
https://github.com/python/cpython.git
synced 2025-09-27 02:39:58 +00:00
bpo-38820: Test with OpenSSL 3.0.0 final (GH-28205)
Signed-off-by: Christian Heimes <christian@python.org>
This commit is contained in:
parent
c4ea45d7d2
commit
cc7c680194
2 changed files with 6 additions and 2 deletions
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
|
@ -185,7 +185,7 @@ jobs:
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
openssl_ver: [1.1.1l, 3.0.0-beta1]
|
openssl_ver: [1.1.1l, 3.0.0]
|
||||||
env:
|
env:
|
||||||
OPENSSL_VER: ${{ matrix.openssl_ver }}
|
OPENSSL_VER: ${{ matrix.openssl_ver }}
|
||||||
MULTISSL_DIR: ${{ github.workspace }}/multissl
|
MULTISSL_DIR: ${{ github.workspace }}/multissl
|
||||||
|
|
|
@ -48,7 +48,7 @@ OPENSSL_OLD_VERSIONS = [
|
||||||
|
|
||||||
OPENSSL_RECENT_VERSIONS = [
|
OPENSSL_RECENT_VERSIONS = [
|
||||||
"1.1.1l",
|
"1.1.1l",
|
||||||
"3.0.0-beta1"
|
"3.0.0"
|
||||||
]
|
]
|
||||||
|
|
||||||
LIBRESSL_OLD_VERSIONS = [
|
LIBRESSL_OLD_VERSIONS = [
|
||||||
|
@ -412,6 +412,10 @@ class BuildOpenSSL(AbstractBuilder):
|
||||||
["make", "-j1", "install_ssldirs", "install_fips"],
|
["make", "-j1", "install_ssldirs", "install_fips"],
|
||||||
cwd=self.build_dir
|
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
|
@property
|
||||||
def short_version(self):
|
def short_version(self):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue