-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
55 lines (52 loc) · 1.16 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
trigger:
branches:
include:
- master
- feature/*
- release/*
- refs/tags/*
pr:
autoCancel: true
branches:
include:
- master
resources:
repositories:
- repository: rsg
type: github
name: RocketSurgeonsGuild/AzureDevopsTemplates
ref: refs/tags/v0.11.3
endpoint: github
variables:
- group: rsg-bot
- name: CONFIGURATION
value: Release
- name: VERBOSITY
value: Normal
- name: COVERAGE
value: "$(Agent.BuildDirectory)/c"
- name: ARTIFACTS
value: $(Build.ArtifactStagingDirectory)
- name: DOTNET_SKIP_FIRST_TIME_EXPERIENCE
value: "true"
- name: CodeCovToken
value: '6502eb14-343a-43eb-96f4-d282791a48b3'
jobs:
- template: pipeline/nuke.yml@rsg
parameters:
name: 'Build'
dependsOn: GitVersion
vmImage: "macOS-10.14"
Configuration: $(Configuration)
Verbosity: $(Verbosity)
GitHubPackages: true
EnableReleaseNotes: false
DotNetSdk:
- "2.x"
- "3.x"
NuGetVersion: "5.2.0"
PublishNuGetPackages: 'Windows'
Matrix:
Windows:
BuildName: "Windows"
ImageName: "Windows-latest"