Skip to content

Commit

Permalink
Move away from the legacy windevbuildagents pool (#13218)
Browse files Browse the repository at this point in the history
There is an internal requirement that we move to build agents that we
don't run ourselves. This discharges us of that requirement!

We're switching between the WinDevPool pool and the WinDevPoolOSS pool
based on whether this code is being built in the open-source tenant or
the internal/private one.
  • Loading branch information
DHowett committed Sep 15, 2021
1 parent 8e350ca commit 881b1da
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .pipelines/ci/templates/build-powertoys-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,11 @@ jobs:
variables:
BuildConfiguration: ${{ parameters.configuration }}
BuildPlatform: ${{ parameters.platform }}
pool: "windevbuildagents"
pool:
${{ if eq(variables['System.CollectionUri'], 'https://dev.azure.com/ms/') }}:
name: WinDevPoolOSS-L
${{ if ne(variables['System.CollectionUri'], 'https://dev.azure.com/ms/') }}:
name: WinDevPool-L
timeoutInMinutes: 120
strategy:
maxParallel: 10
Expand Down

0 comments on commit 881b1da

Please sign in to comment.