-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathazure-pipelines.yml
More file actions
321 lines (280 loc) · 11 KB
/
azure-pipelines.yml
File metadata and controls
321 lines (280 loc) · 11 KB
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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
variables:
- group: global
- group: NuGetOrg
- name: dotnetVersion
value: '10.0.201'
- name: solution
value: "**/*.slnx"
- name: buildConfiguration
value: 'Release'
- name: publishableBranches
value: 'main,features/dotnet-10' # Comma-separated list of branch names to publish packages for
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: $(dotnetVersion)
performMultiLevelLookup: true
includePreviewVersions: false
- pwsh: |
$env:ASPNETCORE_ENVIRONMENT = 'Development'
dotnet --info
Get-ChildItem Env: | Sort-Object Name | Format-Table -AutoSize
displayName: Inspect environment
condition: succeeded()
- script: dotnet tool restore
displayName: Restore .NET tools
- powershell: |
$version = $(dotnet 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 & Package
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: $(dotnetVersion)
performMultiLevelLookup: true
includePreviewVersions: false
- pwsh: |
$env:ASPNETCORE_ENVIRONMENT = 'Development'
dotnet --info
Get-ChildItem Env: | Sort-Object Name | Format-Table -AutoSize
displayName: Inspect environment
condition: succeeded()
- script: dotnet tool restore
displayName: Restore .NET tools
- task: NuGetToolInstaller@1
displayName: Install nuget tool
- task: Cache@2 # https://learn.microsoft.com/en-us/azure/devops/pipelines/artifacts/caching-nuget?view=azure-devops#cache-nuget-packages-1
displayName: Dotnet cache (nuget)
inputs:
key: 'nuget | "$(Agent.OS)" | **/packages.lock.json,!**/bin/**,!**/obj/**'
restoreKeys: |
nuget | "$(Agent.OS)"
nuget
path: '$(NUGET_PACKAGES)'
cacheHitVar: 'CACHE_RESTORED'
- task: DownloadSecureFile@1
name: signkey
displayName: Download Secure File
inputs:
secureFile: 'bIT.snk'
- task: Bash@3
displayName: Copy secure file
inputs:
targetType: 'inline'
script: |
# Copy secure file
cp -fr $(signkey.secureFilePath) $(Build.SourcesDirectory)/src/bIT.snk
- task: DotNetCoreCLI@2
displayName: Dotnet restore (nuget)
condition: succeeded()
# condition: and(succeeded(), ne(variables.CACHE_RESTORED, true))
inputs:
command: restore
verbosityRestore: Normal
- task: DotNetCoreCLI@2
displayName: Dotnet build
condition: succeeded()
inputs:
command: build
projects: "$(solution)"
arguments: "--configuration $(buildConfiguration) --no-restore --nologo"
- task: Bash@3 # https://www.mytechramblings.com/posts/check-if-your-dotnet-app-dependencies-has-a-security-vulnerability-on-you-cicd-pipelines/
displayName: Vulnerability scan (nuget)
continueOnError: true
inputs:
targetType: 'inline'
script: |
dotnet list package --vulnerable --include-transitive 2>&1 | tee build.log
echo "Analyze dotnet list package command log output..."
if grep -q -i "critical\|high\|moderate" build.log; then
echo "Security vulnerabilities found"
exit 1
else
echo "No Security vulnerabilities found"
exit 0
fi
- task: PublishPipelineArtifact@1
displayName: Publish build artifacts
inputs:
targetPath: $(Build.SourcesDirectory)/src
artifact: 'BuildOutput'
- stage: test
displayName: Test stage
dependsOn: [ build ]
jobs:
- job: tests
displayName: Run Tests
pool:
vmImage: 'ubuntu-latest'
steps:
- checkout: self
fetchDepth: 0
- task: DownloadPipelineArtifact@2 # Download build artifacts
inputs:
artifactName: 'BuildOutput'
targetPath: '$(Build.SourcesDirectory)/src'
- 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: $(dotnetVersion)
performMultiLevelLookup: true
includePreviewVersions: false
- script: dotnet tool restore
displayName: Restore .NET tools
- bash: |
docker compose up -d
displayName: Docker start containers
- bash: |
docker ps -a
displayName: Docker list containers
- task: DotNetCoreCLI@2
displayName: Dotnet test (unit)
inputs:
command: test
projects: "$(Build.SourcesDirectory)/tests/**/*UnitTests.csproj"
arguments: "--configuration $(buildConfiguration) --nologo"
# - task: DotNetCoreCLI@2
# displayName: Dotnet test (integration)
# 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)
# 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: always()
- stage: publish
displayName: Publish stage
dependsOn: [ test ]
condition: succeeded()
jobs:
- job: publish
displayName: Publish Packages
pool:
vmImage: 'ubuntu-latest'
steps:
- checkout: self
fetchDepth: 0
- task: DownloadPipelineArtifact@2 # Download build artifacts
inputs:
artifactName: 'BuildOutput'
targetPath: '$(Build.SourcesDirectory)/src'
- 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: $(dotnetVersion)
performMultiLevelLookup: true
includePreviewVersions: false
- script: dotnet tool restore
displayName: Restore .NET tools
- powershell: |
$currentBranch = "$(Build.SourceBranch)".Replace('refs/heads/', '')
$publishableBranches = "$(publishableBranches)".Split(',')
$isPublishableBranch = $publishableBranches -contains $currentBranch -or "$(Build.SourceBranch)".StartsWith('refs/tags/')
Write-Host "##vso[task.setvariable variable=IsPublishableBranch]$isPublishableBranch"
displayName: 'Evaluate Publishing Criteria'
- task: DotNetCoreCLI@2
displayName: Dotnet restore (nuget)
condition: succeeded()
inputs:
command: restore
verbosityRestore: Normal
- task: DotNetCoreCLI@2
displayName: Package pack (nuget)
condition: and(succeeded(), eq(variables.IsPublishableBranch, 'True'))
inputs:
command: pack
configuration: $(buildConfiguration)
packagesToPack: '**/*.csproj;!**/*Tests.csproj;!$(Build.SourcesDirectory)/examples/**/*.csproj'
nobuild: true
arguments: "--no-restore --no-build --nologo"
packDirectory: '$(Build.ArtifactStagingDirectory)/packages'
verbosityPack: Normal
- task: DotNetCoreCLI@2
displayName: Package push (nuget)
condition: and(succeeded(), eq(variables.IsPublishableBranch, 'True'))
inputs:
command: custom
custom: nuget
arguments: >
push $(Build.ArtifactStagingDirectory)/packages/*.nupkg
-s https://api.nuget.org/v3/index.json
-k $(NugetOrgApiKey)
--skip-duplicate
- task: PublishPipelineArtifact@1
displayName: Publish package artifacts
condition: and(succeeded(), eq(variables.IsPublishableBranch, 'True'))
inputs:
targetPath: "$(Build.ArtifactStagingDirectory)/packages"
artifactName: packages