Skip to content

Commit 88dbff5

Browse files
mmitchevseanreesermsft
authored andcommitted
Merged PR 51704: Use servicing queues
Use servicing queues ---- #### AI description (iteration 1) #### PR Classification This pull request updates the pipeline configuration to use the correct servicing queues. #### PR Summary The PR modifies the pipeline YAML file to replace outdated job pool demand strings with updated ones, ensuring the use of proper servicing queues. - `eng/pipeline.yml`: Replaced "windows.vs2022preview.amd64" and "windows.vs2022preview.amd64.Open" with "windows.vs2022.amd64" and "windows.vs2022.amd64.Open" in both public and internal job pool configurations. <!-- GitOpsUserAgent=GitOps.Apps.Server.pullrequestcopilot -->
1 parent 63b97d9 commit 88dbff5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

eng/pipeline.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ jobs:
2727
pool:
2828
${{ if eq(variables['System.TeamProject'], 'public') }}:
2929
name: NetCore-Public
30-
demands: ImageOverride -equals windows.vs2022preview.amd64.Open
30+
demands: ImageOverride -equals windows.vs2022.amd64.Open
3131
${{ if eq(variables['System.TeamProject'], 'internal') }}:
3232
name: NetCore1ESPool-Internal
33-
demands: ImageOverride -equals windows.vs2022preview.amd64
33+
demands: ImageOverride -equals windows.vs2022.amd64
3434
helixRepo: $(repoName)
3535
jobs:
3636
- job: Windows_NT
@@ -41,10 +41,10 @@ jobs:
4141
# agent pool can't be read from a user-defined variable (Azure DevOps limitation)
4242
${{ if eq(variables['System.TeamProject'], 'public') }}:
4343
name: NetCore-Public
44-
demands: ImageOverride -equals windows.vs2022preview.amd64.Open
44+
demands: ImageOverride -equals windows.vs2022.amd64.Open
4545
${{ if eq(variables['System.TeamProject'], 'internal') }}:
4646
name: NetCore1ESPool-Internal
47-
demands: ImageOverride -equals windows.vs2022preview.amd64
47+
demands: ImageOverride -equals windows.vs2022.amd64
4848
variables:
4949
- name: Codeql.Enabled
5050
value: true

0 commit comments

Comments
 (0)