diff options
author | Steve Dower <steve.dower@microsoft.com> | 2018-10-05 18:05:47 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-05 18:05:47 (GMT) |
commit | 4313a293dae579f3406aa94508ff3803a79b0344 (patch) | |
tree | ffbee6ac817ebf7713cede31ad9c21234c56f202 | |
parent | 491974735c51141019ae4ef0492e63a8eb716636 (diff) | |
download | cpython-4313a293dae579f3406aa94508ff3803a79b0344.zip cpython-4313a293dae579f3406aa94508ff3803a79b0344.tar.gz cpython-4313a293dae579f3406aa94508ff3803a79b0344.tar.bz2 |
bpo-34902: Fixes VM image for Azure Pipelines build (GH-9719)
-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: |