Skip to content

Commit 45d0058

Browse files
change windows pool (#1065)
1 parent 393418b commit 45d0058

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

azure-pipelines-e2e-tests-template.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ stages:
1919
- ${{ each option in test.jobOptions }}:
2020
- job: Run_${{ replace(option.pool, ' ', '_') }}
2121
${{ if eq(lower(option.pool), 'windows') }}:
22-
pool: Hosted VS2017
22+
pool:
23+
vmImage: 'windows-2019'
2324
${{ else }}:
2425
pool:
2526
${{ if or(eq(variables['System.TeamProject'], 'public'), in(variables['Build.Reason'], 'PullRequest')) }}:

azure-pipelines.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,8 @@ stages:
5555
displayName: Build Sources
5656
jobs:
5757
- job: Build
58-
pool: Hosted VS2017
58+
pool:
59+
vmImage: 'windows-2019'
5960

6061
variables:
6162
${{ if and(ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}:
@@ -122,7 +123,7 @@ stages:
122123
displayName: Sign Artifacts
123124
pool:
124125
name: NetCore1ESPool-Internal
125-
demands: ImageOverride -equals build.windows.10.amd64.vs2017
126+
demands: ImageOverride -equals build.windows.10.amd64.vs2019
126127

127128
variables:
128129
${{ if and(ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}:
@@ -169,7 +170,8 @@ stages:
169170
dependsOn:
170171
- Sign
171172
displayName: Publish Artifacts
172-
pool: Hosted VS2017
173+
pool:
174+
vmImage: 'windows-2019'
173175

174176
variables:
175177
${{ if and(ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}:

0 commit comments

Comments
 (0)