Skip to content

Commit cec68c3

Browse files
matrixisemiss-islington
authored andcommitted
[3.7] bpo-38117: Test with OpenSSL 1.1.1d (GH-15983) (GH-15994)
Signed-off-by: Christian Heimes <[email protected]>. (cherry picked from commit 58ab134) Co-authored-by: Christian Heimes <[email protected]> https://bugs.python.org/issue38117 Automerge-Triggered-By: @matrixise
1 parent c62da14 commit cec68c3

File tree

5 files changed

+10
-9
lines changed

5 files changed

+10
-9
lines changed

.azure-pipelines/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
variables:
6060
testRunTitle: '$(build.sourceBranchName)-linux'
6161
testRunPlatform: linux
62-
openssl_version: 1.1.1c
62+
openssl_version: 1.1.1d
6363

6464
steps:
6565
- template: ./posix-steps.yml
@@ -116,7 +116,7 @@ jobs:
116116
variables:
117117
testRunTitle: '$(Build.SourceBranchName)-linux-coverage'
118118
testRunPlatform: linux-coverage
119-
openssl_version: 1.1.1c
119+
openssl_version: 1.1.1d
120120

121121
steps:
122122
- template: ./posix-steps.yml

.azure-pipelines/pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
variables:
6060
testRunTitle: '$(system.pullRequest.TargetBranch)-linux'
6161
testRunPlatform: linux
62-
openssl_version: 1.1.1c
62+
openssl_version: 1.1.1d
6363

6464
steps:
6565
- template: ./posix-steps.yml
@@ -116,7 +116,7 @@ jobs:
116116
variables:
117117
testRunTitle: '$(Build.SourceBranchName)-linux-coverage'
118118
testRunPlatform: linux-coverage
119-
openssl_version: 1.1.1c
119+
openssl_version: 1.1.1d
120120

121121
steps:
122122
- template: ./posix-steps.yml

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ cache:
1111

1212
env:
1313
global:
14-
- OPENSSL=1.1.1c
14+
- OPENSSL=1.1.1d
1515
- OPENSSL_DIR="$HOME/multissl/openssl/${OPENSSL}"
1616
- PATH="${OPENSSL_DIR}/bin:$PATH"
1717
# Use -O3 because we don't use debugger on Travis-CI
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Test with OpenSSL 1.1.1d

Tools/ssl/multissltests.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,16 +45,16 @@
4545
]
4646

4747
OPENSSL_RECENT_VERSIONS = [
48-
"1.0.2s",
49-
"1.1.0k",
50-
"1.1.1c",
48+
"1.0.2t",
49+
"1.1.0l",
50+
"1.1.1d",
5151
]
5252

5353
LIBRESSL_OLD_VERSIONS = [
5454
]
5555

5656
LIBRESSL_RECENT_VERSIONS = [
57-
"2.7.4",
57+
"2.9.2",
5858
]
5959

6060
# store files in ../multissl

0 commit comments

Comments
 (0)