Skip to content

Commit 3344197

Browse files
[3.7] bpo-37081: Test with OpenSSL 1.1.1c (GH-13631) (GH-13782)
Signed-off-by: Christian Heimes <[email protected]> (cherry picked from commit 06651ee) Co-authored-by: Christian Heimes <[email protected]> https://bugs.python.org/issue37081
1 parent 15bde92 commit 3344197

File tree

5 files changed

+9
-8
lines changed

5 files changed

+9
-8
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.1b
62+
openssl_version: 1.1.1c
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.1b
119+
openssl_version: 1.1.1c
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.0j
62+
openssl_version: 1.1.1c
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.0j
119+
openssl_version: 1.1.1c
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.0i
14+
- OPENSSL=1.1.1c
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.1c

Tools/ssl/multissltests.py

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

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

5353
LIBRESSL_OLD_VERSIONS = [

0 commit comments

Comments
 (0)