8000 gh-123418: Update CI to use fresh OpenSSL releases by zware · Pull Request #123675 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-123418: Update CI to use fresh OpenSSL releases #123675

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Sep 4, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add openssl/openssl GitHub URL template for OpenSSL downloads
  • Loading branch information
zware committed Sep 4, 2024
commit f3035fb1823668a0d7bf6950f68048a58fc26dc0
2 changes: 2 additions & 0 deletions Tools/ssl/multissltests.py
Original file line number Diff line number Diff line change
7E79 Expand Up @@ -397,6 +397,7 @@ def run_python_tests(self, tests, network=True):
class BuildOpenSSL(AbstractBuilder):
library = "OpenSSL"
url_templates = (
"https://github.com/openssl/openssl/releases/download/openssl-{v}/openssl-{v}.tar.gz",
"https://www.openssl.org/source/openssl-{v}.tar.gz",
"https://www.openssl.org/source/old/{s}/openssl-{v}.tar.gz"
)
Expand Down Expand Up @@ -439,6 +440,7 @@ def short_version(self):
parsed = parsed[:2]
return ".".join(str(i) for i in parsed)


class BuildLibreSSL(AbstractBuilder):
library = "LibreSSL"
url_templates = (
Expand Down
Loading
0