diff options
author | 2018-10-05 11:05:47 -0700 | |
---|---|---|
committer | 2018-10-05 11:05:47 -0700 | |
commit | 4313a293dae579f3406aa94508ff3803a79b0344 (patch) | |
tree | ffbee6ac817ebf7713cede31ad9c21234c56f202 /.azure-pipelines | |
parent | Simplify flags checks in sre_compile.py. (GH-9718) (diff) | |
download | cpython-4313a293dae579f3406aa94508ff3803a79b0344.tar.gz cpython-4313a293dae579f3406aa94508ff3803a79b0344.tar.bz2 cpython-4313a293dae579f3406aa94508ff3803a79b0344.zip |
bpo-34902: Fixes VM image for Azure Pipelines build (GH-9719)
Diffstat (limited to '.azure-pipelines')
-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 f56254e3802..49a7bb6232a 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 653f55b69b1..2d7fba9cf32 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: |