-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathazure-pipelines.yml
177 lines (156 loc) · 5.11 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
variables:
- name: solution
value: "**/*.sln"
- name: buildConfiguration
value: 'Release'
trigger:
tags:
include:
- '*'
batch: 'true'
branches:
include:
- main
- features/*
paths:
exclude:
- README.md
pr:
autoCancel: 'true'
branches:
include:
- main
resources:
- repo: self
fetchDepth: '0'
#######################################################################################################
# VERSION
#
stages:
- stage: version
displayName: Version stage
jobs:
- job: version
displayName: Version
variables:
MinVerDefaultPreReleaseIdentifiers: preview.0
# MinVerBuildMetadata: $(Build.SourceVersion) # use git commit hash in version
pool:
vmImage: 'ubuntu-latest'
steps:
- checkout: self
fetchDepth: '0'
- task: UseDotNet@2 # https://docs.microsoft.com/en-us/azure/devops/pipelines/ecosystems/dotnet-core?view=azure-devops
displayName: Use .NET SDK
condition: succeeded()
inputs:
version: '8.0.x'
performMultiLevelLookup: true
includePreviewVersions: false
- bash: |
export ASPNETCORE_ENVIRONMENT=Development
whereis dotnet
/usr/bin/dotnet --info
displayName: Inspect environment
condition: succeeded()
- task: DotNetCoreCLI@2
displayName: 'Install version tool'
inputs:
command: 'custom'
custom: 'tool'
arguments: 'install --global minver-cli --version 4.3.0'
- powershell: |
$version = $(minver -v d) # https://github.com/adamralph/minver#options
$buildName = "$version" # + "_" + $env:BUILD_SOURCEBRANCHNAME
Write-Host "##vso[build.updatebuildnumber]$buildName"
Write-Host "##vso[task.setvariable variable=BUILD_VERSION;isOutput=true]$buildName"
displayName: Calculate version
name: CalculateVersion
- powershell: |
Get-ChildItem Env:
displayName: Show environment variables
#######################################################################################################
# BUILD
#
- stage: build
displayName: Build stage
dependsOn: [version]
jobs:
- job: build
displayName: Build
pool:
vmImage: 'ubuntu-latest'
variables:
NUGET_PACKAGES: $(Pipeline.Workspace)/.nuget/packages
steps:
- checkout: self
fetchDepth: '0'
- task: UseDotNet@2 # https://docs.microsoft.com/en-us/azure/devops/pipelines/ecosystems/dotnet-core?view=azure-devops
displayName: Use .NET SDK
condition: succeeded()
inputs:
version: '8.0.x'
performMultiLevelLookup: true
includePreviewVersions: false
- bash: |
export ASPNETCORE_ENVIRONMENT=Development
whereis dotnet
/usr/bin/dotnet --info
displayName: Inspect environment
condition: succeeded()
- task: DotNetCoreCLI@2
displayName: Dotnet restore
condition: succeeded()
inputs:
command: restore
projects: '**/*.csproj'
- task: DotNetCoreCLI@2
displayName: Dotnet build
condition: succeeded()
inputs:
command: build
projects: "$(solution)"
arguments: "--configuration $(buildConfiguration) --no-restore --nologo"
- task: Bash@3
displayName: Vulnerability scan (nuget)
continueOnError: true
inputs:
targetType: 'inline'
script: |
dotnet list $(Build.SourcesDirectory)/BridgingIT.DevKit.sln package --vulnerable --include-transitive 2>&1 | tee build.log
test `grep -cm 1 'has the following vulnerable packages' build.log` = 0
- bash: |
docker compose up -d
displayName: Docker start containers
- bash: |
docker ps -a
displayName: Docker list containers
condition: succeeded()
- task: DotNetCoreCLI@2
displayName: Dotnet test (unit)
condition: succeeded()
inputs:
command: test
projects: "**/*[Tt]ests/*UnitTests.csproj"
arguments: "--configuration $(buildConfiguration) --no-restore --no-build --nologo"
- task: DotNetCoreCLI@2
displayName: Dotnet test (integration)
condition: succeeded()
inputs:
command: test
projects: "**/*[Tt]ests/*IntegrationTests.csproj"
arguments: "--configuration $(buildConfiguration) --no-restore --no-build --nologo --filter FullyQualifiedName!~Examples"
# - task: DotNetCoreCLI@2
# displayName: Dotnet test (end2end)
# condition: succeeded()
# inputs:
# command: test
# projects: "**/*[Tt]ests/*EndToEndTests.csproj"
# arguments: "--configuration $(buildConfiguration) --no-restore --no-build --nologo --filter FullyQualifiedName!~Examples"
- bash: |
docker compose stop
docker container stop $(docker container ls -aq)
docker container rm $(docker container ls -aq)
displayName: Docker cleanup
condition: succeeded()
continueOnError: true