Move FreeBSD builds to DncEng Pool provider builds (#35537)
authorMatt Galbraith <MattGal@users.noreply.github.com>
Tue, 5 May 2020 00:27:31 +0000 (17:27 -0700)
committerGitHub <noreply@github.com>
Tue, 5 May 2020 00:27:31 +0000 (17:27 -0700)
* 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

index 28a8b59..54da423 100644 (file)
@@ -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