forked from Djohnnie/MijnSauna
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pipelines-processor.yml
91 lines (78 loc) · 2.86 KB
/
pipelines-processor.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
# .NET Desktop
# Build and run tests for .NET Desktop or Windows classic desktop solutions.
# Add steps that publish symbols, save build artifacts, and more:
# https://docs.microsoft.com/azure/devops/pipelines/apps/windows/dot-net
trigger:
branches:
include:
- master
- releases/*
paths:
include:
- src/MijnSauna.Middleware.Processor/*
- src/MijnSauna.Middleware.Tests/*
- src/MijnSauna.Common.Client/*
- src/MijnSauna.Common.DataTransferObjects/*
- src/MijnSauna.Common.Protobuf/*
pool:
vmImage: 'ubuntu-16.04'
variables:
solution: '**/backend/**/*.sln'
buildPlatform: 'Any CPU'
buildConfiguration: 'Release'
steps:
- task: UseDotNet@2
displayName: 'Use .NET SDK (5.0)'
inputs:
packageType: sdk
version: 5.0.203
includePreviewVersions: true
installationPath: $(Agent.ToolsDirectory)/dotnet
- task: DotNetCoreCLI@2
displayName: Restore NuGet packages
inputs:
command: 'restore'
projects: |
**/src/MijnSauna.Common.*/*.csproj
**/src/MijnSauna.Middleware.*/*.csproj
- task: DotNetCoreCLI@2
displayName: Build Solution
inputs:
command: 'build'
projects: |
**/src/MijnSauna.Common.*/*.csproj
**/src/MijnSauna.Middleware.*/*.csproj
- task: DotNetCoreCLI@2
displayName: Run UnitTests
inputs:
command: 'test'
projects: |
**/src/MijnSauna.Common.*/*.csproj
**/src/MijnSauna.Middleware.*/*.csproj
arguments: '/p:CollectCoverage=true /p:CoverletOutputFormat=cobertura /p:Exclude=[System.*]*%2c[xunit.*]*'
- script: |
dotnet tool install dotnet-reportgenerator-globaltool --tool-path . --version 4.3.9
./reportgenerator "-reports:$(Build.SourcesDirectory)/src/MijnSauna.Middleware.Tests/coverage.cobertura.xml" "-targetdir:$(Build.SourcesDirectory)/src/MijnSauna.Middleware.Tests/results" "-reporttypes:HTMLInline;HTMLChart"
- task: PublishTestResults@2
displayName: Publish test results
inputs:
testRunner: VSTest
testResultsFiles: '**/*.trx'
- task: PublishCodeCoverageResults@1
displayName: Publish code coverage results
inputs:
summaryFileLocation: $(Build.SourcesDirectory)/src/MijnSauna.Middleware.Tests/coverage.cobertura.xml
reportDirectory: $(Build.SourcesDirectory)/src/MijnSauna.Middleware.Tests/results
codecoverageTool: cobertura
- script: |
dotnet publish ./src/MijnSauna.Middleware.Processor --configuration "Release" --runtime linux-arm --output ./src/MijnSauna.Middleware.Processor/bin/Release/publish
- task: ArchiveFiles@2
inputs:
rootFolderOrFile: '$(Build.SourcesDirectory)/src/MijnSauna.Middleware.Processor/bin/Release/publish'
includeRootFolder: false
archiveType: 'zip'
archiveFile: '$(Build.ArtifactStagingDirectory)/MijnSauna.Middleware.Processor.zip'
- task: PublishBuildArtifacts@1
inputs:
pathToPublish: $(Build.ArtifactStagingDirectory)
artifactName: MijnSauna.Middleware.Processor