-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathazure-pipelines.yml
271 lines (244 loc) · 9 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
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
variables:
- group: global
- group: NuGetOrg
- 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 & 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: '8.0.x'
performMultiLevelLookup: true
includePreviewVersions: false
- bash: |
export ASPNETCORE_ENVIRONMENT=Development
whereis dotnet
/usr/bin/dotnet --info
displayName: Inspect environment
condition: succeeded()
- 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
- 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
- task: DotNetCoreCLI@2
displayName: Package pack (nuget)
condition: |
and
(
succeeded(),
or
(
eq(variables['Build.SourceBranch'], 'refs/heads/main'),
contains(variables['Build.SourceBranch'], 'refs/tags')
)
)
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(),
or
(
eq(variables['Build.SourceBranch'], 'refs/heads/main'),
contains(variables['Build.SourceBranch'], 'refs/tags')
)
)
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(),
or
(
eq(variables['Build.SourceBranch'], 'refs/heads/main'),
contains(variables['Build.SourceBranch'], 'refs/tags')
)
)
inputs:
targetPath: "$(Build.ArtifactStagingDirectory)/packages"
artifactName: packages