@@ -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-Internal
109+ name : $(DncEngInternalBuildPool)
108110 demands : ImageOverride -equals windows.vs2022.amd64
109111 timeoutInMinutes : 300
110112 variables :
@@ -212,7 +214,7 @@ stages:
212214 - name : _SignType
213215 value : Test
214216 pool :
215- name : NetCore-Public
217+ name : $(DncEngPublicBuildPool)
216218 demands : ImageOverride -equals $(WindowsMachineQueueName)
217219 timeoutInMinutes : 90
218220 steps :
@@ -285,7 +287,7 @@ stages:
285287 # WindowsMachineQueueName=Windows.vs2022.amd64.open
286288 # and there is an alternate build definition that sets this to a queue that is always scouting the
287289 # next preview of Visual Studio.
288- name : NetCore-Public
290+ name : $(DncEngPublicBuildPool)
289291 demands : ImageOverride -equals $(WindowsMachineQueueName)
290292 timeoutInMinutes : 120
291293 strategy :
@@ -343,7 +345,7 @@ stages:
343345 # WindowsMachineQueueName=Windows.vs2022.amd64.open
344346 # and there is an alternate build definition that sets this to a queue that is always scouting the
345347 # next preview of Visual Studio.
346- name : NetCore-Public
348+ name : $(DncEngPublicBuildPool)
347349 demands : ImageOverride -equals $(WindowsMachineQueueName)
348350 timeoutInMinutes : 120
349351 strategy :
@@ -397,7 +399,7 @@ stages:
397399 # Mock official build
398400 - job : MockOfficial
399401 pool :
400- name : NetCore-Public
402+ name : $(DncEngPublicBuildPool)
401403 demands : ImageOverride -equals $(WindowsMachineQueueName)
402404 steps :
403405 - checkout : self
@@ -488,7 +490,7 @@ stages:
488490 # End to end build
489491 - job : EndToEndBuildTests
490492 pool :
491- name : NetCore-Public
493+ name : $(DncEngPublicBuildPool)
492494 demands : ImageOverride -equals $(WindowsMachineQueueName)
493495 steps :
494496 - checkout : self
@@ -517,7 +519,7 @@ stages:
517519 - name : _SignType
518520 value : Test
519521 pool :
520- name : NetCore-Public
522+ name : $(DncEngPublicBuildPool)
521523 demands : ImageOverride -equals $(WindowsMachineQueueName)
522524 timeoutInMinutes : 90
523525 steps :
@@ -543,7 +545,7 @@ stages:
543545 # Plain build Windows
544546 - job : Plain_Build_Windows
545547 pool :
546- name : NetCore-Public
548+ name : $(DncEngPublicBuildPool)
547549 demands : ImageOverride -equals $(WindowsMachineQueueName)
548550 variables :
549551 - name : _BuildConfig
@@ -640,7 +642,7 @@ stages:
640642 # Test trimming on Windows
641643 - job : Build_And_Test_Trimming_Windows
642644 pool :
643- name : NetCore-Public
645+ name : $(DncEngPublicBuildPool)
644646 demands : ImageOverride -equals $(WindowsMachineQueueName)
645647 strategy :
646648 maxParallel : 2
0 commit comments