From: Alexander Köplinger Date: Mon, 19 Oct 2020 18:24:05 +0000 (+0200) Subject: Use NetCorePublic-Pool pool instead of AzDO hosted pool for Browser jobs (#43589) X-Git-Tag: submit/tizen/20210909.063632~5022 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=34bf5f8d335d1ce8a2966da4b947f753cf95fdf7;p=platform%2Fupstream%2Fdotnet%2Fruntime.git Use NetCorePublic-Pool pool instead of AzDO hosted pool for Browser jobs (#43589) The hosted pool runs into no disk space issues. --- diff --git a/eng/pipelines/common/xplat-setup.yml b/eng/pipelines/common/xplat-setup.yml index a5720c2..b267635 100644 --- a/eng/pipelines/common/xplat-setup.yml +++ b/eng/pipelines/common/xplat-setup.yml @@ -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