From: Matt Galbraith Date: Tue, 5 May 2020 00:27:31 +0000 (-0700) Subject: Move FreeBSD builds to DncEng Pool provider builds (#35537) X-Git-Tag: submit/tizen/20210909.063632~8197 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=51fdfe19ce743c16274ebaa36f9a92b746701621;p=platform%2Fupstream%2Fdotnet%2Fruntime.git Move FreeBSD builds to DncEng Pool provider builds (#35537) * Move FreeBSD builds to DncEng Pool provider builds * PR feedback * Update xplat-setup.yml From reading @wfurt 's commit it looks like osGroup is actually FreeBSD here. FreeBSD_x64 seems to be ignored. --- diff --git a/eng/pipelines/common/xplat-setup.yml b/eng/pipelines/common/xplat-setup.yml index 28a8b59..54da423 100644 --- a/eng/pipelines/common/xplat-setup.yml +++ b/eng/pipelines/common/xplat-setup.yml @@ -88,12 +88,12 @@ jobs: ${{ if eq(parameters.jobParameters.pool, '') }}: pool: # Public Linux Build Pool - ${{ if and(eq(parameters.osGroup, 'Linux'), eq(variables['System.TeamProject'], 'public')) }}: + ${{ if and(in(parameters.osGroup, 'Linux', 'FreeBSD'), eq(variables['System.TeamProject'], 'public')) }}: name: NetCorePublic-Pool queue: BuildPool.Ubuntu.1604.Amd64.Open # Official Build Linux Pool - ${{ if and(eq(parameters.osGroup, 'Linux'), ne(variables['System.TeamProject'], 'public')) }}: + ${{ if and(in(parameters.osGroup, 'Linux', 'FreeBSD'), ne(variables['System.TeamProject'], 'public')) }}: name: NetCoreInternal-Pool queue: BuildPool.Ubuntu.1604.Amd64