From 52c0b1e753a6e4d197d0efc3dca85c55787b8444 Mon Sep 17 00:00:00 2001 From: lariover3 <76131115+lariover3@users.noreply.github.com> Date: Fri, 18 Mar 2022 11:06:49 +0100 Subject: [PATCH] Changed the image of windows image to newer for pipeline (#16046) * Changed the image of windows image to newer --- azure-pipelines.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 843f1609f47e..1ad2cff2dbc9 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -17,7 +17,7 @@ jobs: displayName: Build all tasks (Windows) condition: and(succeeded(), not(variables.task), eq(variables.os, 'Windows_NT')) pool: - vmImage: vs2017-win2016 + vmImage: windows-2022 timeoutInMinutes: 120 steps: - template: ci/build-all-steps.yml @@ -31,7 +31,7 @@ jobs: - build_all_windows condition: and(succeeded(), ne(variables['build.reason'], 'PullRequest'), eq(variables.os, 'Windows_NT')) pool: - vmImage: vs2017-win2016 + vmImage: windows-2022 steps: - template: ci/publish-steps.yml @@ -42,7 +42,7 @@ jobs: - publish_windows condition: and(succeeded(), in(variables['build.reason'], 'Schedule', 'Manual'), eq(variables['COURTESY_PUSH'], 'true')) pool: - vmImage: vs2017-win2016 + vmImage: windows-2022 steps: - powershell: | $week = (Invoke-WebRequest https://whatsprintis.it -Headers @{"Accept"= "application/json"} | ConvertFrom-Json).week @@ -72,7 +72,7 @@ jobs: eq(variables['COURTESY_PUSH_NOTIFICATION'], 'true') ) pool: - vmImage: vs2017-win2016 + vmImage: windows-2022 steps: - powershell: .\ci\courtesy-push\send-notification.ps1 -IsPRCreated $false displayName: 'Send notification to the MS Teams channel' @@ -112,7 +112,7 @@ jobs: displayName: Build shared npm packages (Win) condition: and(succeeded(), not(variables.task), eq(variables.os, 'Windows_NT')) pool: - vmImage: vs2017-win2016 + vmImage: windows-2022 steps: - template: ci/build-common-npm.yml