From 51fdfe19ce743c16274ebaa36f9a92b746701621 Mon Sep 17 00:00:00 2001 From: Matt Galbraith Date: Mon, 4 May 2020 17:27:31 -0700 Subject: [PATCH] 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. --- eng/pipelines/common/xplat-setup.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.7.4