Use NetCorePublic-Pool pool instead of AzDO hosted pool for Browser jobs (#43589)
authorAlexander Köplinger <alex.koeplinger@outlook.com>
Mon, 19 Oct 2020 18:24:05 +0000 (20:24 +0200)
committerGitHub <noreply@github.com>
Mon, 19 Oct 2020 18:24:05 +0000 (20:24 +0200)
The hosted pool runs into no disk space issues.

eng/pipelines/common/xplat-setup.yml

index a5720c2..b267635 100644 (file)
@@ -105,12 +105,12 @@ jobs:
     ${{ if eq(parameters.jobParameters.pool, '') }}:
       pool:
         # Public Linux Build Pool
-        ${{ if and(in(parameters.osGroup, 'Linux', 'FreeBSD'), eq(variables['System.TeamProject'], 'public')) }}:
+        ${{ if and(in(parameters.osGroup, 'Linux', 'FreeBSD', 'Browser'), eq(variables['System.TeamProject'], 'public')) }}:
           name:  NetCorePublic-Pool
           queue: BuildPool.Ubuntu.1604.Amd64.Open
 
         # Official Build Linux Pool
-        ${{ if and(in(parameters.osGroup, 'Linux', 'FreeBSD'), ne(variables['System.TeamProject'], 'public')) }}:
+        ${{ if and(in(parameters.osGroup, 'Linux', 'FreeBSD', 'Browser'), ne(variables['System.TeamProject'], 'public')) }}:
           name: NetCoreInternal-Pool
           queue: BuildPool.Ubuntu.1604.Amd64
 
@@ -118,9 +118,6 @@ jobs:
         ${{ if in(parameters.osGroup, 'OSX', 'iOS', 'tvOS') }}:
           vmImage: 'macOS-10.15'
 
-        ${{ if eq(parameters.osGroup, 'Browser') }}:
-          vmImage: 'ubuntu-latest'
-
         # Official Build Windows Pool
         ${{ if and(eq(parameters.osGroup, 'Windows_NT'), ne(variables['System.TeamProject'], 'public')) }}:
           name: NetCoreInternal-Pool