diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2018-10-05 18:32:18 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-05 18:32:18 (GMT) |
commit | 467360eeb24525e330d653826f21f30f47481d08 (patch) | |
tree | fac0c98de1d64d744ecfaa6ccb76302397e78ead | |
parent | 77bd6062ba9f7767c28bb9962b16951efbf57586 (diff) | |
download | cpython-467360eeb24525e330d653826f21f30f47481d08.zip cpython-467360eeb24525e330d653826f21f30f47481d08.tar.gz cpython-467360eeb24525e330d653826f21f30f47481d08.tar.bz2 |
bpo-34902: Fixes VM image for Azure Pipelines build (GH-9719)
(cherry picked from commit 4313a293dae579f3406aa94508ff3803a79b0344)
Co-authored-by: Steve Dower <steve.dower@microsoft.com>
-rw-r--r-- | .azure-pipelines/ci.yml | 2 | ||||
-rw-r--r-- | .azure-pipelines/pr.yml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.azure-pipelines/ci.yml b/.azure-pipelines/ci.yml index f56254e..49a7bb6 100644 --- a/.azure-pipelines/ci.yml +++ b/.azure-pipelines/ci.yml @@ -116,7 +116,7 @@ jobs: condition: and(succeeded(), eq(dependencies.Prebuild.outputs['tests.run'], 'true')) pool: - vmImage: vs2017-win2017 + vmImage: vs2017-win2016 strategy: matrix: diff --git a/.azure-pipelines/pr.yml b/.azure-pipelines/pr.yml index 653f55b..2d7fba9 100644 --- a/.azure-pipelines/pr.yml +++ b/.azure-pipelines/pr.yml @@ -64,7 +64,7 @@ jobs: condition: and(succeeded(), eq(dependencies.Prebuild.outputs['tests.run'], 'true')) pool: - vmImage: vs2017-win2017 + vmImage: vs2017-win2016 strategy: matrix: |