-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
86 lines (74 loc) · 2 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
trigger:
branches:
include:
- master
paths:
include:
- ServerApp/*
- ServerApp.IntegrationTests/*
- azure-pipelines.yml
- SportsStoreApp.sln
pool:
vmImage: 'windows-2019'
variables:
buildConfiguration: 'Debug'
steps:
- task: UseDotNet@2
displayName: 'Setup .NET Core'
inputs:
packageType: 'sdk'
version: '3.1.x'
- task: DotNetCoreCLI@2
displayName: 'Restore'
inputs:
command: 'restore'
projects: '**/*.sln'
feedsToUse: 'select'
verbosityRestore: 'Minimal'
- task: CmdLine@2
displayName: 'Libman'
inputs:
script: |
dotnet tool restore
dotnet libman restore
workingDirectory: 'src\SportsStore'
- task: SonarCloudPrepare@1
displayName: Prepare SonarCloud analysis
inputs:
SonarCloud: 'feliperomero3-sonarcloud'
organization: 'feliperomero3'
scannerMode: 'MSBuild'
projectKey: 'feliperomero3_SportsStoreApp_ServerApp'
projectName: 'SportsStoreApp_ServerApp'
projectVersion: '1.0'
- task: DotNetCoreCLI@2
displayName: 'Build'
inputs:
command: build
projects: '**/*.sln'
arguments: '--no-restore --configuration $(buildConfiguration)'
- task: DotNetCoreCLI@2
displayName: 'Test'
inputs:
command: 'test'
projects: '**/*Test*/*.csproj'
arguments: '--no-build --configuration $(buildConfiguration) --collect "Code Coverage"'
- task: SonarCloudAnalyze@1
displayName: 'Run SonarCloud analysis'
- task: DotNetCoreCLI@2
displayName: 'Publish'
inputs:
command: 'publish'
publishWebProjects: false
projects: '**/!(*Test*).csproj'
arguments: '--no-build --configuration $(buildConfiguration) --output $(Build.ArtifactStagingDirectory)'
zipAfterPublish: true
- task: PublishBuildArtifacts@1
displayName: 'Publish artifacts'
inputs:
pathtoPublish: '$(Build.ArtifactStagingDirectory)'
artifactName: '$(Build.DefinitionName)_$(Build.BuildNumber)'
- task: SonarCloudPublish@1
displayName: 'Publish SonarCloud analysis results'
inputs:
pollingTimeoutSec: '300'