Skip to content

Commit 2fe15db

Browse files
bpo-38820: Test with OpenSSL 3.0.0 final (GH-28205)
Signed-off-by: Christian Heimes <[email protected]> (cherry picked from commit cc7c680) Co-authored-by: Christian Heimes <[email protected]>
1 parent a272ffe commit 2fe15db

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
@@ -206,7 +206,7 @@ jobs:
206206
strategy:
207207
fail-fast: false
208208
matrix:
209-
openssl_ver: [1.1.1l, 3.0.0-beta1]
209+
openssl_ver: [1.1.1l, 3.0.0]
210210
env:
211211
OPENSSL_VER: ${{ matrix.openssl_ver }}
212212
MULTISSL_DIR: ${{ github.workspace }}/multissl

Tools/ssl/multissltests.py

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

4949
OPENSSL_RECENT_VERSIONS = [
5050
"1.1.1l",
51-
"3.0.0-beta1"
51+
"3.0.0"
5252
]
5353

5454
LIBRESSL_OLD_VERSIONS = [
@@ -412,6 +412,10 @@ def _post_install_300(self):
412412
["make", "-j1", "install_ssldirs", "install_fips"],
413413
cwd=self.build_dir
414414
)
415+
if not os.path.isdir(self.lib_dir):
416+
# 3.0.0-beta2 uses lib64 on 64 bit platforms
417+
lib64 = self.lib_dir + "64"
418+
os.symlink(lib64, self.lib_dir)
415419

416420
@property
417421
def short_version(self):

0 commit comments

Comments
 (0)