Skip to content

Commit

Permalink
bpo-37081: Test with OpenSSL 1.1.1c (pythonGH-13631)
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Heimes <[email protected]>
  • Loading branch information
tiran authored and DinoV committed Jan 14, 2020
1 parent a405d90 commit 792b9b5
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .azure-pipelines/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
variables:
testRunTitle: '$(build.sourceBranchName)-linux'
testRunPlatform: linux
openssl_version: 1.1.1b
openssl_version: 1.1.1c

steps:
- template: ./posix-steps.yml
Expand Down Expand Up @@ -116,7 +116,7 @@ jobs:
variables:
testRunTitle: '$(Build.SourceBranchName)-linux-coverage'
testRunPlatform: linux-coverage
openssl_version: 1.1.1b
openssl_version: 1.1.1c

steps:
- template: ./posix-steps.yml
Expand Down
4 changes: 2 additions & 2 deletions .azure-pipelines/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
variables:
testRunTitle: '$(system.pullRequest.TargetBranch)-linux'
testRunPlatform: linux
openssl_version: 1.1.0j
openssl_version: 1.1.1c

steps:
- template: ./posix-steps.yml
Expand Down Expand Up @@ -116,7 +116,7 @@ jobs:
variables:
testRunTitle: '$(Build.SourceBranchName)-linux-coverage'
testRunPlatform: linux-coverage
openssl_version: 1.1.0j
openssl_version: 1.1.1c

steps:
- template: ./posix-steps.yml
Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ cache:

env:
global:
- OPENSSL=1.1.0i
- OPENSSL=1.1.1c
- OPENSSL_DIR="$HOME/multissl/openssl/${OPENSSL}"
- PATH="${OPENSSL_DIR}/bin:$PATH"
# Use -O3 because we don't use debugger on Travis-CI
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Test with OpenSSL 1.1.1c
6 changes: 3 additions & 3 deletions Tools/ssl/multissltests.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@
]

OPENSSL_RECENT_VERSIONS = [
"1.0.2p",
"1.1.0i",
"1.1.1",
"1.0.2s",
"1.1.0k",
"1.1.1c",
]

LIBRESSL_OLD_VERSIONS = [
Expand Down

0 comments on commit 792b9b5

Please sign in to comment.