-
Notifications
You must be signed in to change notification settings - Fork 1
/
azure-pipelines-ci.yml
46 lines (35 loc) · 949 Bytes
/
azure-pipelines-ci.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
# NuGet-DontNet-Tool application
trigger:
- master
- hotfix/*
variables:
projectDir: RunningVSInstanceFinder
binDir: bin\Release\net472
name: 2.0.$(Date:yy)$(DayOfYear)$(Rev:.r)
resources:
repositories:
- repository: templates
type: git
name: DFDevOps\cicd-templates
ref: refs/tags/stable-2
# http://tdc1tfsapp01:8080/tfs/DefaultCollection/DFDevOps/_git/cicd-templates
jobs:
- job: Build
pool:
demands: DotNetFramework
workspace:
clean: all
variables:
- template: ci/variables.yml@templates
steps:
- template: ci/build-and-test.yml@templates
parameters:
withCoverage: false
- template: ci/symbols-publish.yml@templates
- template: ci/nuget-pack-as-tool.yml@templates
parameters:
projectDir: $(projectDir)
binDir: $(binDir)
- template: ci/nuget-push.yml@templates
- template: ci/nuget-promote.yml@templates
- template: ci/sonar-qube-publish.yml@templates