From b6eba01a967272b5ea95180000e715dcd042a82f Mon Sep 17 00:00:00 2001 From: Bill Hurt Date: Wed, 26 Feb 2020 13:34:55 -0800 Subject: [PATCH] (#565) Remove Deprecated Images Microsoft is deprecating some images from the hosted runner image pool, including `'win1803`. This change removes that image in favor of `vs2017-win2016` as per https://devblogs.microsoft.com/devops/removing-older-images-in-azure-pipelines-hosted-pools/ --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index ec80fcb9c..6a988c13b 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -47,7 +47,7 @@ stages: - job: Test_HQRM displayName: 'HQRM' pool: - vmImage: 'win1803' + vmImage: 'vs2017-win2016' timeoutInMinutes: 0 steps: - task: DownloadBuildArtifacts@0