Skip to content
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
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,8 @@ jobs:
# Keep 1.1.1w in our list despite it being upstream EOL and otherwise
# unsupported as it most resembles other 1.1.1-work-a-like ssl APIs
# supported by important vendors such as AWS-LC.
openssl_ver: [1.1.1w, 3.0.18, 3.1.7, 3.2.6, 3.3.5]
openssl_ver: [1.1.1w, 3.0.19, 3.3.6, 3.4.4, 3.5.5, 3.6.1]
# See Tools/ssl/make_ssl_data.py for notes on adding a new version
env:
OPENSSL_VER: ${{ matrix.openssl_ver }}
MULTISSL_DIR: ${{ github.workspace }}/multissl
Expand Down
12 changes: 8 additions & 4 deletions Tools/ssl/multissltests.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,17 @@

OPENSSL_OLD_VERSIONS = [
"1.1.1w",
"3.1.8",
"3.2.6",
]

OPENSSL_RECENT_VERSIONS = [
"3.0.18",
"3.1.7",
"3.2.6",
"3.3.5",
"3.0.19",
"3.3.6",
"3.4.4",
"3.5.5",
"3.6.1",
# See make_ssl_data.py for notes on adding a new version.
]

LIBRESSL_OLD_VERSIONS = [
Expand Down
Loading