Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Galbraith <MattGal@users.noreply.github.com>2020-05-05 03:27:31 +0300
committerGitHub <noreply@github.com>2020-05-05 03:27:31 +0300
commit51fdfe19ce743c16274ebaa36f9a92b746701621 (patch)
treed52c2d519a97692ed99ee7bf2fc78b85df3d6731 /eng/pipelines/common/xplat-setup.yml
parent56518a7546bf2ad200936938e0f33cd07d54a378 (diff)
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.
Diffstat (limited to 'eng/pipelines/common/xplat-setup.yml')
-rw-r--r--eng/pipelines/common/xplat-setup.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/eng/pipelines/common/xplat-setup.yml b/eng/pipelines/common/xplat-setup.yml
index 28a8b59d457..54da4233ada 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