From 4769e2d558a44df5bf82020e734fa00e92dc223a Mon Sep 17 00:00:00 2001 From: Amin Yahyaabadi Date: Fri, 3 Jul 2020 00:04:46 -0500 Subject: [PATCH 1/2] Using windows-latest for vmImage --- script/vsts/nightly-release.yml | 2 ++ script/vsts/pull-requests.yml | 2 ++ script/vsts/release-branch-build.yml | 2 ++ 3 files changed, 6 insertions(+) diff --git a/script/vsts/nightly-release.yml b/script/vsts/nightly-release.yml index 6b180b62c03..2d9822dd947 100644 --- a/script/vsts/nightly-release.yml +++ b/script/vsts/nightly-release.yml @@ -1,5 +1,7 @@ jobs: - job: GetReleaseVersion + pool: + vmImage: 'windows-latest' steps: # This has to be done separately because VSTS inexplicably # exits the script block after `npm install` completes. diff --git a/script/vsts/pull-requests.yml b/script/vsts/pull-requests.yml index a21f7d75a3c..c23df709573 100644 --- a/script/vsts/pull-requests.yml +++ b/script/vsts/pull-requests.yml @@ -2,6 +2,8 @@ trigger: none # No CI builds, only PR builds jobs: - job: GetReleaseVersion + pool: + vmImage: 'windows-latest' steps: # This has to be done separately because VSTS inexplicably # exits the script block after `npm install` completes. diff --git a/script/vsts/release-branch-build.yml b/script/vsts/release-branch-build.yml index 58c132f7d9e..10d76ca20b2 100644 --- a/script/vsts/release-branch-build.yml +++ b/script/vsts/release-branch-build.yml @@ -5,6 +5,8 @@ trigger: jobs: - job: GetReleaseVersion + pool: + vmImage: 'windows-latest' steps: # This has to be done separately because VSTS inexplicably # exits the script block after `npm install` completes. From 9aef566ba7529f242a54ac6c65a189c82074e7df Mon Sep 17 00:00:00 2001 From: DeeDeeG Date: Fri, 3 Jul 2020 12:32:42 -0400 Subject: [PATCH 2/2] windows test pr