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

Miss Islington (bot) webhook-mailer at python.org
Fri Oct 5 14:27:49 EDT 2018


https://github.com/python/cpython/commit/b57f800b351328a67b4a11a1864d39c6b9b8d39f
commit: b57f800b351328a67b4a11a1864d39c6b9b8d39f
branch: 3.7
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2018-10-05T11:27:44-07:00
summary:

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

(cherry picked from commit 4313a293dae579f3406aa94508ff3803a79b0344)

Co-authored-by: Steve Dower <steve.dower at microsoft.com>

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