8000 [3.13] gh-123700: Update OpenSSL versions in multissltests and CI (GH-123701) by miss-islington · Pull Request #123702 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

[3.13] gh-123700: Update OpenSSL versions in multissltests and CI (GH-123701) #123702

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 1 commit into from
Sep 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
gh-123700: Update OpenSSL versions in multissltests and CI (GH-123701)
Remove EOL 1.1.1w from CI and move it to the 'old' set in multissltests,
add latest 3.3.2 to both CI and multissltests.
(cherry picked from commit d83e30c)

Co-authored-by: Zachary Ware <zach@python.org>
  • Loading branch information
zware authored and miss-islington committed Sep 4, 2024
commit 75d43e8d0d063eaef350f194991ab5a26b848135
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ jobs:
strategy:
fail-fast: false
matrix:
openssl_ver: [1.1.1w, 3.0.15, 3.1.7, 3.2.3]
openssl_ver: [3.0.15, 3.1.7, 3.2.3, 3.3.2]
env:
OPENSSL_VER: ${{ matrix.openssl_ver }}
MULTISSL_DIR: ${{ github.workspace }}/multissl
Expand Down
3 changes: 2 additions & 1 deletion Tools/ssl/multissltests.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,14 @@
log = logging.getLogger("multissl")

OPENSSL_OLD_VERSIONS = [
"1.1.1w",
]

OPENSSL_RECENT_VERSIONS = [
"1.1.1w",
"3.0.15",
"3.1.7",
"3.2.3",
"3.3.2",
]

LIBRESSL_OLD_VERSIONS = [
Expand Down
Loading
0