Skip to content

Commit cc7c680

Browse files
authored
bpo-38820: Test with OpenSSL 3.0.0 final (GH-28205)
Signed-off-by: Christian Heimes <[email protected]>
1 parent c4ea45d commit cc7c680

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ jobs:
185185
strategy:
186186
fail-fast: false
187187
matrix:
188-
openssl_ver: [1.1.1l, 3.0.0-beta1]
188+
openssl_ver: [1.1.1l, 3.0.0]
189189
env:
190190
OPENSSL_VER: ${{ matrix.openssl_ver }}
191191
MULTISSL_DIR: ${{ github.workspace }}/multissl

Tools/ssl/multissltests.py

+5-1
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)