-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathazure-pipelines.yml
397 lines (365 loc) · 14.5 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
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
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
# used for internal ado builds
name: ADO CI CollectSFData
trigger:
branches:
include:
- 'master'
- 'release*'
pool:
vmImage: 'windows-latest'
variables:
project_name: CollectSFData
esrp_signing_connection: 'collectsfdata esrp signing connection'
project_feed: Tools/CollectServiceFabricData_Public
build_configuration: release
system.debug: false
publish_release: $[eq(variables['Build.SourceBranch'], 'refs/heads/master')]
project_root: .\src
start_time: $[format('{0}-{1:yyyy}{1:MM}{1:dd}-{1:HH}{1:mm}{1:ss}', variables['project_name'], pipeline.startTime)]
artifacts_drive: Z
artifacts_share_target: 'Z:\$(System.DefinitionName)\$(System.JobId)\$(start_time)'
release_path: $(System.DefaultWorkingDirectory)/src/bin/$(build_configuration)
release_stage_path: $(release_path)/signed
artifacts_name_suffix: $(project_name)
stages:
- stage: build
jobs:
- job: build
displayName: 'build'
steps:
- task: PowerShell@2
displayName: 'agent environment'
inputs:
targetType: 'inline'
script: |
[environment]::getEnvironmentVariables().getEnumerator()|sort Name
dotnet --info
dotnet nuget locals all --clear
errorActionPreference: 'continue'
verbosePreference: 'continue'
debugPreference: 'continue'
- task: NuGetCommand@2
displayName: 'nuget restore'
inputs:
command: 'restore'
restoreSolution: '$(project_root)/$(project_name).sln'
feedsToUse: 'config'
nugetConfigPath: './nuget.config'
noCache: false
verbosityRestore: 'Normal'
- task: CodeQL3000Init@0
displayName: 'codeql init'
inputs:
Enabled: true
AnalyzeInPipeline: false
PublishDatabase: true
PublishDatabaseLog: true
Language: csharp,powershell
Cadence: 72 # 72 hours default, use 0 for debug
LogLevel: 4
- task: PowerShell@2
displayName: 'dotnet build'
inputs:
targetType: 'inline'
script: |
write-host "dotnet list `"$env:project_root\$env:project_name\$env:project_name.csproj`" package --include-transitive"
dotnet list "$env:project_root\$env:project_name\$env:project_name.csproj" package --include-transitive
write-host "dotnet build `"$env:project_root\$env:project_name\$env:project_name.csproj`" -v detailed -c $env:build_configuration"
dotnet build "$env:project_root\$env:project_name\$env:project_name.csproj" -v detailed -c $env:build_configuration
errorActionPreference: 'continue'
verbosePreference: 'continue'
debugPreference: 'continue'
- task: ManifestGeneratorTask@0
displayName: 'manifest generation'
inputs:
BuildDropPath: $(release_path)
Verbosity: Verbose
PackageName: CollectSFData
- task: CodeQL3000Finalize@0
displayName: 'codeql finalize'
condition: always()
continueOnError: true
- task: CredScan@3
displayName: 'cred scan'
inputs:
verboseOutput: false
- task: AntiMalware@4
displayName: 'anti-malware'
inputs:
InputType: 'Basic'
ScanType: 'CustomScan'
FileDirPath: '$(Build.StagingDirectory)'
TreatSignatureUpdateFailureAs: 'Warning'
SignatureFreshness: 'UpToDate'
TreatStaleSignatureAs: 'Error'
- task: ComponentGovernanceComponentDetection@0
displayName: 'component governance'
inputs:
scanType: Register
verbosity: Verbose
alertWarningLevel: High
- task: PowerShell@2
displayName: 'dotnet build output'
inputs:
targetType: 'inline'
script: dir .. -recurse
errorActionPreference: 'continue'
verbosePreference: 'continue'
debugPreference: 'continue'
- task: PublishPipelineArtifact@1
displayName: 'publish release to pipeline'
inputs:
targetPath: $(release_path)
artifactName: release-$(artifacts_name_suffix)
- task: PublishPipelineArtifact@1
displayName: 'publish artifacts for codeql to pipeline'
inputs:
targetPath: $(System.ArtifactsDirectory)
artifactName: artifacts-$(artifacts_name_suffix)
- stage: sign
displayName: 'sign'
dependsOn: build
condition: succeeded()
jobs:
- job: sign
displayName: 'sign'
steps:
- task: PowerShell@2
displayName: 'agent environment'
inputs:
targetType: 'inline'
script: |
[environment]::getEnvironmentVariables().getEnumerator()|sort Name
dotnet --info
dotnet nuget locals all --clear
errorActionPreference: 'continue'
verbosePreference: 'continue'
debugPreference: 'continue'
- task: DownloadPipelineArtifact@2
displayName: 'download release from pipeline'
inputs:
artifactName: release-$(artifacts_name_suffix)
targetPath: $(release_path)
- task: DownloadPipelineArtifact@2
displayName: 'download artifacts from pipeline'
inputs:
artifactName: artifacts-$(artifacts_name_suffix)
targetPath: $(System.ArtifactsDirectory)
- task: PowerShell@2
displayName: 'download pipeline artifacts output'
inputs:
targetType: 'inline'
script: dir .. -recurse
errorActionPreference: 'continue'
verbosePreference: 'continue'
debugPreference: 'continue'
- task: PowerShell@2
displayName: 'unpack nupkg for binary signing'
inputs:
targetType: 'inline'
script: |
$nupkg = @(get-childItem -recurse "$($env:release_path)\*.nupkg")[0].FullName
$nupkgZip = "$nupkg.zip"
write-host "nupkg=$nupkg"
$nupkgDir = "$($env:release_stage_path)"
write-host "mkdir $nupkgDir"
mkdir $nupkgDir
copy $nupkg $nupkgZip
write-host "expand-archive -path $nupkgZip -destinationPath $nupkgDir -force"
expand-archive -path $nupkgZip -destinationPath $nupkgDir -force
write-host "dir $nupkgDir -recurse"
dir $nupkgDir -recurse
errorActionPreference: 'continue'
verbosePreference: 'continue'
debugPreference: 'continue'
- task: EsrpCodeSigning@4
displayName: 'dll and exe code signing'
inputs:
ConnectedServiceName: $(esrp_signing_connection)
FolderPath: '$(release_path)'
Pattern: 'sf.tx.*.dll,*$(project_name)*.dll,$(project_name).exe'
signConfigType: 'inlineSignParams'
inlineOperation: |
[
{
"KeyCode": "CP-230012",
"OperationCode": "SigntoolSign",
"Parameters": {
"OpusName": "Microsoft",
"OpusInfo": "http://www.microsoft.com",
"FileDigest": "/fd \"SHA256\"",
"PageHash": "/NPH",
"TimeStamp": "/tr \"http://rfc3161.gtm.corp.microsoft.com/TSS/HttpTspServer\" /td sha256"
},
"ToolName": "sign",
"ToolVersion": "1.0"
},
{
"KeyCode": "CP-230012",
"OperationCode": "SigntoolVerify",
"Parameters": {},
"ToolName": "sign",
"ToolVersion": "1.0"
}
]
SessionTimeout: '60'
MaxConcurrency: '50'
MaxRetryAttempts: '5'
PendingAnalysisWaitTimeoutMinutes: '5'
VerboseLogin: false
- task: PowerShell@2
displayName: 'repack nupkg with signed binaries'
inputs:
targetType: 'inline'
script: |
$nupkg = @(get-childItem -recurse "$($env:release_path)\*.nupkg")[0].FullName
$nupkgZip = "$nupkg.zip"
write-host "nupkg=$nupkg"
$nupkgDir = "$($env:release_stage_path)"
del "$nupkgDir\CodeSignSummary*.md" -force
del $nupkg -force
del $nupkgZip -force
write-host "compress-archive -path $nupkgDir\* -destinationPath $nupkgZip -force"
compress-archive -path $nupkgDir\* -destinationPath $nupkgZip -force
rd $nupkgDir -recurse -force
md $nupkgDir
move $nupkgZip $nupkg -force
move $nupkg $nupkgDir -force
errorActionPreference: 'continue'
verbosePreference: 'continue'
debugPreference: 'continue'
- task: EsrpCodeSigning@4
displayName: 'nupkg code signing'
inputs:
ConnectedServiceName: $(esrp_signing_connection)
FolderPath: '$(release_path)'
Pattern: '*.nupkg'
signConfigType: 'inlineSignParams'
inlineOperation: |
[
{
"KeyCode": "CP-401405",
"OperationCode": "NuGetSign",
"Parameters": {},
"ToolName": "sign",
"ToolVersion": "1.0"
},
{
"KeyCode": "CP-401405",
"OperationCode": "NuGetVerify",
"Parameters": {},
"ToolName": "sign",
"ToolVersion": "1.0"
}
]
SessionTimeout: '60'
MaxConcurrency: '50'
MaxRetryAttempts: '5'
PendingAnalysisWaitTimeoutMinutes: '5'
VerboseLogin: false
- task: PowerShell@2
displayName: 'create zip with signed .net version files'
inputs:
targetType: 'inline'
script: |
$source = "$($env:release_path)\\net*"
$destination = "$($env:release_stage_path)\\$($env:project_name).zip"
write-host "compress-archive -path $source -destinationPath $destination -force"
compress-archive -path $source -destinationPath $destination -force
$exeFileRef = @(get-childItem -recurse "$($env:release_path)\$($env:project_name).exe")[0].FullName
$fileVersion = [io.fileinfo]::new($exeFileRef).VersionInfo.FileVersion
write-host "fileVersion=$fileVersion"
write-host "dir $env:release_path -recurse"
dir $env:release_path -recurse
errorActionPreference: 'continue'
verbosePreference: 'continue'
debugPreference: 'continue'
- task: PowerShell@2
displayName: 'dotnet signed build output'
inputs:
targetType: 'inline'
script: dir .. -recurse
errorActionPreference: 'continue'
verbosePreference: 'continue'
debugPreference: 'continue'
- task: PowerShell@2
displayName: 'copy artifacts to azure storage'
condition: eq(variables.build_configuration, 'debug')
inputs:
targetType: 'inline'
script: |
[environment]::getEnvironmentVariables().getEnumerator()|sort Name
write-host "test-netConnection -computerName $env:mapped_artifacts_storage_uri -Port 445 -informationLevel detailed"
$connectTestResult = test-netConnection -computerName $env:mapped_artifacts_storage_uri -Port 445 -informationLevel detailed
if ($connectTestResult.tcpTestSucceeded) {
$securePassword = ConvertTo-SecureString -String $env:mapped_artifacts_pass -Force -AsPlainText
$credentials = [psCredential]::new($env:mapped_artifacts_user, $securePassword)
write-host "new-psDrive -name $drive -psProvider fileSystem -root "$env:mapped_artifacts_share" -credential $credentials"
new-psDrive -name $env:artifacts_drive -psProvider fileSystem -root "$env:mapped_artifacts_share" -credential $credentials -scope global
} else {
write-error -message "Unable to reach the azure storage account via port 445."
}
if(!(test-path $env:artifacts_share_target))
{
write-host "mkdir "$env:artifacts_share_target""
mkdir "$env:artifacts_share_target"
}
write-host "copy $env:release_path "$env:artifacts_share_target" -recurse"
copy $env:release_path "$env:artifacts_share_target" -recurse
write-host "copy $env:artifacts_directory $env:artifacts_share_target -recurse"
copy $env:artifacts_directory "$env:artifacts_share_target" -recurse
errorActionPreference: 'continue'
verbosePreference: 'continue'
debugPreference: 'continue'
env:
mapped_artifacts_storage_uri: $(artifacts_storage_uri)
mapped_artifacts_user: $(artifacts_user)
mapped_artifacts_pass: $(artifacts_pass)
mapped_artifacts_share: $(artifacts_share)
artifacts_directory: $(System.ArtifactsDirectory)
- task: PublishPipelineArtifact@1
displayName: 'publish release to pipeline'
inputs:
targetPath: $(release_stage_path)
artifactName: signed-release-$(artifacts_name_suffix)
- stage: release
displayName: 'release'
dependsOn: sign
condition: and(succeeded(), eq(variables.publish_release, 'true'))
jobs:
- job: publish
displayName: 'publish'
steps:
- task: PowerShell@2
displayName: 'agent environment'
inputs:
targetType: 'inline'
script: |
[environment]::getEnvironmentVariables().getEnumerator()|sort Name
dotnet --info
dotnet nuget locals all --clear
errorActionPreference: 'continue'
verbosePreference: 'continue'
debugPreference: 'continue'
- task: DownloadPipelineArtifact@2
displayName: 'download release from pipeline'
inputs:
artifactName: signed-release-$(artifacts_name_suffix)
targetPath: $(release_path)
- task: PowerShell@2
displayName: 'dotnet build output'
inputs:
targetType: 'inline'
script: dir .. -recurse
errorActionPreference: 'continue'
verbosePreference: 'continue'
debugPreference: 'continue'
- task: NuGetCommand@2
displayName: 'push nupkg to feed'
inputs:
command: 'push'
packagesToPush: '$(release_path)/*.nupkg'
nuGetFeedType: 'internal'
publishVstsFeed: '$(project_feed)'
publishPackageMetadata: true
verbosityPush: 'Normal'