gh-123700: Update OpenSSL versions in multissltests and CI (#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.
This commit is contained in:
Zachary Ware 2024-09-04 14:29:41 -05:00 committed by GitHub
parent 56b00f4705
commit d83e30cadd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 2 deletions

View File

@ -202,7 +202,7 @@ jobs:
strategy: strategy:
fail-fast: false fail-fast: false
matrix: 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: env:
OPENSSL_VER: ${{ matrix.openssl_ver }} OPENSSL_VER: ${{ matrix.openssl_ver }}
MULTISSL_DIR: ${{ github.workspace }}/multissl MULTISSL_DIR: ${{ github.workspace }}/multissl

View File

@ -43,13 +43,14 @@ import tarfile
log = logging.getLogger("multissl") log = logging.getLogger("multissl")
OPENSSL_OLD_VERSIONS = [ OPENSSL_OLD_VERSIONS = [
"1.1.1w",
] ]
OPENSSL_RECENT_VERSIONS = [ OPENSSL_RECENT_VERSIONS = [
"1.1.1w",
"3.0.15", "3.0.15",
"3.1.7", "3.1.7",
"3.2.3", "3.2.3",
"3.3.2",
] ]
LIBRESSL_OLD_VERSIONS = [ LIBRESSL_OLD_VERSIONS = [