8000 [3.9] bpo-38820: Test with OpenSSL 3.0.0 final (GH-28205) (GH-28217) · python/cpython@7a6178a · GitHub
[go: up one dir, main page]

Skip to content

Commit 7a6178a

Browse files
ambvtiran
andauthored
[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 cc7c680) Co-authored-by: Christian Heimes <christian@python.org>
1 parent a328a13 commit 7a6178a

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ jobs:
196196
strategy:
197197
fail-fast: false
198198
matrix:
199-
openssl_ver: [1.0.2u, 1.1.0l, 1.1.1l, 3.0.0-beta1]
199+
openssl_ver: [1.0.2u, 1.1.0l, 1.1.1l, 3.0.0]
200200
env:
201201
OPENSSL_VER: ${{ matrix.openssl_ver }}
202202
MULTISSL_DIR: ${{ github.workspace }}/multissl

Tools/ssl/multissltests.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050

5151
OPENSSL_RECENT_VERSIONS = [
5252
"1.1.1l",
53-
"3.0.0-beta1"
53+
"3.0.0"
5454
]
5555

5656
LIBRESSL_OLD_VERSIONS = [
@@ -410,6 +410,10 @@ def _post_install_300(self):
410410
["make", "-j1", "install_ssldirs", "install_fips"],
411411
cwd=self.build_dir
412412
)
413+
if not os.path.isdir(self.lib_dir):
414+
# 3.0.0-beta2 uses lib64 on 64 bit platforms
415+
lib64 = self.lib_dir + "64"
416+
os.symlink(lib64, self.lib_dir)
413417

414418
@property
415419
def short_version(self):

0 commit comments

Comments
 (0)
0