@@ -68,6 +68,8 @@ variables:
6868 - ${{ if and(eq(variables['System.TeamProject'], 'public'), eq(variables['Build.Reason'], 'PullRequest')) }} :
6969 - name : RunningAsPullRequest
7070 value : true
71+ # Pick up pool provider name behavior from shared yaml template
72+ - template : /eng/common/templates/variables/pool-providers.yml
7173
7274# Variables defined in yml cannot be overridden at queue time; instead overridable variables must be defined in the web UI.
7375# Commenting out until something like this is supported: https://github.com/Microsoft/azure-pipelines-yaml/pull/129
@@ -104,7 +106,7 @@ stages:
104106 jobs :
105107 - job : Full_Signed
106108 pool :
107- name : NetCore1ESPool-Svc-Internal
109+ name : $(DncEngInternalBuildPool)
108110 demands : ImageOverride -equals windows.vs2022.amd64
109111 timeoutInMinutes : 300
110112 variables :
@@ -210,7 +212,7 @@ stages:
210212 - name : _SignType
211213 value : Test
212214 pool :
213- name : NetCore-Public
215+ name : $(DncEngPublicBuildPool)
214216 demands : ImageOverride -equals $(WindowsMachineQueueName)
215217 timeoutInMinutes : 90
216218 steps :
@@ -283,7 +285,7 @@ stages:
283285 # WindowsMachineQueueName=Windows.vs2022.amd64.open
284286 # and there is an alternate build definition that sets this to a queue that is always scouting the
285287 # next preview of Visual Studio.
286- name : NetCore-Public
288+ name : $(DncEngPublicBuildPool)
287289 demands : ImageOverride -equals $(WindowsMachineQueueName)
288290 timeoutInMinutes : 120
289291 strategy :
@@ -341,7 +343,7 @@ stages:
341343 # WindowsMachineQueueName=Windows.vs2022.amd64.open
342344 # and there is an alternate build definition that sets this to a queue that is always scouting the
343345 # next preview of Visual Studio.
344- name : NetCore-Public
346+ name : $(DncEngPublicBuildPool)
345347 demands : ImageOverride -equals $(WindowsMachineQueueName)
346348 timeoutInMinutes : 120
347349 strategy :
@@ -395,7 +397,7 @@ stages:
395397 # Mock official build
396398 - job : MockOfficial
397399 pool :
398- name : NetCore-Public
400+ name : $(DncEngPublicBuildPool)
399401 demands : ImageOverride -equals $(WindowsMachineQueueName)
400402 steps :
401403 - checkout : self
@@ -486,7 +488,7 @@ stages:
486488 # End to end build
487489 - job : EndToEndBuildTests
488490 pool :
489- name : NetCore-Public
491+ name : $(DncEngPublicBuildPool)
490492 demands : ImageOverride -equals $(WindowsMachineQueueName)
491493 steps :
492494 - checkout : self
@@ -515,7 +517,7 @@ stages:
515517 - name : _SignType
516518 value : Test
517519 pool :
518- name : NetCore-Public
520+ name : $(DncEngPublicBuildPool)
519521 demands : ImageOverride -equals $(WindowsMachineQueueName)
520522 timeoutInMinutes : 90
521523 steps :
@@ -541,7 +543,7 @@ stages:
541543 # Plain build Windows
542544 - job : Plain_Build_Windows
543545 pool :
544- name : NetCore-Public
546+ name : $(DncEngPublicBuildPool)
545547 demands : ImageOverride -equals $(WindowsMachineQueueName)
546548 variables :
547549 - name : _BuildConfig
@@ -638,7 +640,7 @@ stages:
638640 # Test trimming on Windows
639641 - job : Build_And_Test_Trimming_Windows
640642 pool :
641- name : NetCore-Public
643+ name : $(DncEngPublicBuildPool)
642644 demands : ImageOverride -equals $(WindowsMachineQueueName)
643645 strategy :
644646 maxParallel : 2
0 commit comments