forked from dotnet/winforms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
31 lines (26 loc) · 1.05 KB
/
azure-pipelines.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# This is a simple wrapper for eng/ci.yml to get around the limitation of
# user-defined variables not being available in yaml template expressions.
# Parameters ARE available in template expressions, and parameters can have default values,
# so they can be used to control yaml flow.
variables:
_PublishUsingPipelines: true
_DotNetArtifactsCategory: WINDOWSDESKTOP
# clean the local repo on the build agents
Build.Repository.Clean: true
# trigger ci builds for completed checkins into master and any release branches
trigger:
- master
- release/*
# trigger ci builds on pull requests into master and any release branches
pr:
- master
- release/*
# Call the ci.yml template, which does the real work
jobs:
- template: /eng/ci.yml
parameters:
${{ if and(ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}:
# these parameters should be set for running in the Internal / Non-Public
agentPoolName: NetCoreInternal-Int-Pool
agentPool: BuildPool.Windows.10.Amd64.VS2019.BT
runAsPublic: false