Skip to content

Commit

Permalink
[3.9] bpo-38820: Test with OpenSSL 3.0.0 final (GH-28205) (GH-28217)
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Heimes <christian@python.org>.
(cherry picked from commit cc7c680)

Co-authored-by: Christian Heimes <christian@python.org>
  • Loading branch information
ambv and tiran authored Sep 8, 2021
1 parent a328a13 commit 7a6178a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 5 additions & 1 deletion Tools/ssl/multissltests.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@

OPENSSL_RECENT_VERSIONS = [
"1.1.1l",
"3.0.0-beta1"
"3.0.0"
]

LIBRESSL_OLD_VERSIONS = [
Expand Down Expand Up @@ -410,6 +410,10 @@ def _post_install_300(self):
["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):
Expand Down

0 comments on commit 7a6178a

Please sign in to comment.