[Python-checkins] bpo-34902: Fixes VM image for Azure Pipelines build (GH-9719)

Steve Dower webhook-mailer at python.org
Fri Oct 5 14:05:52 EDT 2018


https://github.com/python/cpython/commit/4313a293dae579f3406aa94508ff3803a79b0344
commit: 4313a293dae579f3406aa94508ff3803a79b0344
branch: master
author: Steve Dower <steve.dower at microsoft.com>
committer: GitHub <noreply at github.com>
date: 2018-10-05T11:05:47-07:00
summary:

bpo-34902: Fixes VM image for Azure Pipelines build (GH-9719)

files:
M .azure-pipelines/ci.yml
M .azure-pipelines/pr.yml

diff --git a/.azure-pipelines/ci.yml b/.azure-pipelines/ci.yml
index f56254e38024..49a7bb6232aa 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 653f55b69b13..2d7fba9cf328 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:



More information about the Python-checkins mailing list