Skip to content

Commit 34bf5f8

Browse files
authored
Use NetCorePublic-Pool pool instead of AzDO hosted pool for Browser jobs (#43589)
The hosted pool runs into no disk space issues.
1 parent bdd25a2 commit 34bf5f8

1 file changed

Lines changed: 2 additions & 5 deletions

File tree

eng/pipelines/common/xplat-setup.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -105,22 +105,19 @@ jobs:
105105
${{ if eq(parameters.jobParameters.pool, '') }}:
106106
pool:
107107
# Public Linux Build Pool
108-
${{ if and(in(parameters.osGroup, 'Linux', 'FreeBSD'), eq(variables['System.TeamProject'], 'public')) }}:
108+
${{ if and(in(parameters.osGroup, 'Linux', 'FreeBSD', 'Browser'), eq(variables['System.TeamProject'], 'public')) }}:
109109
name: NetCorePublic-Pool
110110
queue: BuildPool.Ubuntu.1604.Amd64.Open
111111

112112
# Official Build Linux Pool
113-
${{ if and(in(parameters.osGroup, 'Linux', 'FreeBSD'), ne(variables['System.TeamProject'], 'public')) }}:
113+
${{ if and(in(parameters.osGroup, 'Linux', 'FreeBSD', 'Browser'), ne(variables['System.TeamProject'], 'public')) }}:
114114
name: NetCoreInternal-Pool
115115
queue: BuildPool.Ubuntu.1604.Amd64
116116

117117
# OSX Build Pool (we don't have on-prem OSX BuildPool
118118
${{ if in(parameters.osGroup, 'OSX', 'iOS', 'tvOS') }}:
119119
vmImage: 'macOS-10.15'
120120

121-
${{ if eq(parameters.osGroup, 'Browser') }}:
122-
vmImage: 'ubuntu-latest'
123-
124121
# Official Build Windows Pool
125122
${{ if and(eq(parameters.osGroup, 'Windows_NT'), ne(variables['System.TeamProject'], 'public')) }}:
126123
name: NetCoreInternal-Pool

0 commit comments

Comments
 (0)