diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2020-04-02 01:26:09 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-02 01:26:09 (GMT) |
commit | 40fff1ff04aa5bc2cf1b965d573b87c48e4da8cc (patch) | |
tree | 51b4df4fc6345e179e67328e429dc0cabfbcd27e | |
parent | 267afc2ab2014e1e3c6b2ff088350a69b691a544 (diff) | |
download | cpython-40fff1ff04aa5bc2cf1b965d573b87c48e4da8cc.zip cpython-40fff1ff04aa5bc2cf1b965d573b87c48e4da8cc.tar.gz cpython-40fff1ff04aa5bc2cf1b965d573b87c48e4da8cc.tar.bz2 |
bpo-40146: Update OpenSSL to 1.1.1f in Azure Pipelines (GH-19288)
(cherry picked from commit 224e1c34d677ef42fe665ac008a000d4dcec1398)
Co-authored-by: Victor Stinner <vstinner@python.org>
-rw-r--r-- | .azure-pipelines/ci.yml | 4 | ||||
-rw-r--r-- | .azure-pipelines/pr.yml | 4 | ||||
-rw-r--r-- | Misc/NEWS.d/next/Tests/2020-04-02-02-14-37.bpo-40146.J-Yo9G.rst | 1 |
3 files changed, 5 insertions, 4 deletions
diff --git a/.azure-pipelines/ci.yml b/.azure-pipelines/ci.yml index 6c2c1ac..9b638dd 100644 --- a/.azure-pipelines/ci.yml +++ b/.azure-pipelines/ci.yml @@ -61,7 +61,7 @@ jobs: variables: testRunTitle: '$(build.sourceBranchName)-linux' testRunPlatform: linux - openssl_version: 1.1.1d + openssl_version: 1.1.1f steps: - template: ./posix-steps.yml @@ -118,7 +118,7 @@ jobs: variables: testRunTitle: '$(Build.SourceBranchName)-linux-coverage' testRunPlatform: linux-coverage - openssl_version: 1.1.1d + openssl_version: 1.1.1f steps: - template: ./posix-steps.yml diff --git a/.azure-pipelines/pr.yml b/.azure-pipelines/pr.yml index 0cc764d..65f23eb 100644 --- a/.azure-pipelines/pr.yml +++ b/.azure-pipelines/pr.yml @@ -61,7 +61,7 @@ jobs: variables: testRunTitle: '$(system.pullRequest.TargetBranch)-linux' testRunPlatform: linux - openssl_version: 1.1.1d + openssl_version: 1.1.1f steps: - template: ./posix-steps.yml @@ -118,7 +118,7 @@ jobs: variables: testRunTitle: '$(Build.SourceBranchName)-linux-coverage' testRunPlatform: linux-coverage - openssl_version: 1.1.1d + openssl_version: 1.1.1f steps: - template: ./posix-steps.yml diff --git a/Misc/NEWS.d/next/Tests/2020-04-02-02-14-37.bpo-40146.J-Yo9G.rst b/Misc/NEWS.d/next/Tests/2020-04-02-02-14-37.bpo-40146.J-Yo9G.rst new file mode 100644 index 0000000..216925f --- /dev/null +++ b/Misc/NEWS.d/next/Tests/2020-04-02-02-14-37.bpo-40146.J-Yo9G.rst @@ -0,0 +1 @@ +Update OpenSSL to 1.1.1f in Azure Pipelines. |