-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
94 lines (80 loc) · 2.41 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
trigger:
- master
- feature/*
stages:
- stage: Build
jobs:
- job: Build
pool:
vmImage: 'windows-latest'
variables:
solution: '**/*.sln'
buildProjects: '**/*.csproj'
testProjects: '**/*.Tests.csproj'
buildConfiguration: 'Release'
steps:
- task: UseDotNet@2
inputs:
packageType: 'sdk'
version: '6.0.x'
- task: UseDotNet@2
inputs:
packageType: 'sdk'
version: '7.0.x'
- task: UseDotNet@2
inputs:
packageType: 'sdk'
version: '8.0.x'
- task: DotNetCoreCLI@2
displayName: 'Restore'
inputs:
command: 'restore'
projects: '$(solution)'
verbosityRestore: 'Normal'
- task: DotNetCoreCLI@2
displayName: 'Build'
inputs:
command: 'build'
projects: '$(buildProjects)'
arguments: '-c $(buildConfiguration) --verbosity normal --no-incremental --no-restore'
- task: DotNetCoreCLI@2
displayName: 'Test'
inputs:
command: 'test'
projects: '$(testProjects)'
arguments: '--no-build -c $(buildConfiguration) --collect:"XPlat Code Coverage" --filter TestCategory!=Integration'
- task: PublishCodeCoverageResults@1
displayName: 'Publish Code Coverage'
inputs:
codeCoverageTool: 'Cobertura'
summaryFileLocation: '$(Agent.TempDirectory)\**\coverage.cobertura.xml'
- task: CopyFiles@2
displayName: 'Copy to Artifact Staging'
inputs:
SourceFolder: '$(System.DefaultWorkingDirectory)'
Contents: '**\bin\$(buildConfiguration)\**'
TargetFolder: '$(Build.ArtifactStagingDirectory)'
- task: PublishBuildArtifacts@1
displayName: 'Publish Artifacts'
inputs:
PathtoPublish: '$(Build.ArtifactStagingDirectory)'
ArtifactName: 'drop'
publishLocation: 'Container'
- stage: Deploy
jobs:
- deployment: NuGet_org
pool:
vmImage: 'windows-latest'
environment: 'NuGet_org'
condition: eq(variables['build.sourceBranchName'], 'master')
strategy:
runOnce:
deploy:
steps:
- task: NuGetToolInstaller@1
- task: NuGetCommand@2
inputs:
command: 'push'
packagesToPush: '$(Pipeline.Workspace)/**/*.nupkg;!$(Pipeline.Workspace)/**/*.symbols.nupkg'
nuGetFeedType: 'external'
publishFeedCredentials: 'NuGet.org'