forked from dotnet/diagnostics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.vsts-dotnet.yml
350 lines (311 loc) · 9.9 KB
/
.vsts-dotnet.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
phases:
- template: /eng/build.yml
parameters:
name: Windows
agentOs: Windows_NT
queue:
name: Hosted VS2017
parallel: 4
matrix:
Build_Release:
_BuildConfig: Release
_BuildArch: x64
_PublishArtifacts: bin
Build_Release_x86:
_BuildConfig: Release
_BuildArch: x86
_PublishArtifacts: bin/Windows_NT.x86.Release
Build_Release_arm:
_BuildConfig: Release
_BuildArch: arm
_PublishArtifacts: bin/Windows_NT.arm.Release
- template: /eng/build.yml
parameters:
name: CentOS_7
agentOs: Linux
dockerImage: mcr.microsoft.com/dotnet-buildtools/prereqs:centos-7-3e800f1-20190501005343
queue:
name: Hosted Ubuntu 1604
parallel: 2
matrix:
Build_Debug:
_BuildConfig: Debug
_BuildArch: x64
_PublishArtifacts: bin/Linux.x64.Debug
Build_Release:
_BuildConfig: Release
_BuildArch: x64
_PublishArtifacts: bin/Linux.x64.Release
- template: /eng/build.yml
parameters:
name: Linux_cross
agentOs: Linux
dockerImage: mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-14.04-cross-1735d26-20190521133857
crossrootfsDir: '/crossrootfs/arm'
queue:
name: Hosted Ubuntu 1604
matrix:
Build_Release:
_BuildConfig: Release
_BuildArch: arm
_PublishArtifacts: bin/Linux.arm.Release
- template: /eng/build.yml
parameters:
name: Linux_cross64
agentOs: Linux
dockerImage: mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-16.04-cross-arm64-a3ae44b-20180315221921
crossrootfsDir: '/crossrootfs/arm64'
queue:
name: Hosted Ubuntu 1604
matrix:
Build_Release:
_BuildConfig: Release
_BuildArch: arm64
_PublishArtifacts: bin/Linux.arm64.Release
- template: /eng/build.yml
parameters:
name: Alpine3_6
agentOs: Linux
dockerImage: mcr.microsoft.com/dotnet-buildtools/prereqs:alpine-3.6-WithNode-f4d3fe3-20181220200247
queue:
name: Hosted Ubuntu 1604
matrix:
Build_Release:
_BuildConfig: Release
_BuildArch: x64
_PublishArtifacts: bin/Linux.x64.Release
- template: /eng/build.yml
parameters:
name: MacOS
agentOs: Darwin
queue:
name: Hosted macOS
parallel: 2
matrix:
Build_Release:
_BuildConfig: Release
_BuildArch: x64
_PublishArtifacts: bin/OSX.x64.Release
# Test only legs
- template: /eng/build.yml
parameters:
name: Debian_Stretch
agentOs: Linux
dockerImage: mcr.microsoft.com/dotnet-buildtools/prereqs:debian-stretch-3e800f1-20190521154431
dependsOn: CentOS_7
testOnly: true
queue:
name: Hosted Ubuntu 1604
matrix:
Build_Debug:
_BuildConfig: Debug
_BuildArch: x64
- template: /eng/build.yml
parameters:
name: Fedora_28
agentOs: Linux
dockerImage: mcr.microsoft.com/dotnet-buildtools/prereqs:fedora-28-09ca40b-20190508143249
dependsOn: CentOS_7
testOnly: true
queue:
name: Hosted Ubuntu 1604
matrix:
Build_Debug:
_BuildConfig: Debug
_BuildArch: x64
- template: /eng/build.yml
parameters:
name: Fedora_29
agentOs: Linux
dockerImage: mcr.microsoft.com/dotnet-buildtools/prereqs:fedora-29-09ca40b-20190508143249
dependsOn: CentOS_7
testOnly: true
queue:
name: Hosted Ubuntu 1604
matrix:
Build_Debug:
_BuildConfig: Debug
_BuildArch: x64
- template: /eng/build.yml
parameters:
name: OpenSuse_42_1
agentOs: Linux
dockerImage: mcr.microsoft.com/dotnet-buildtools/prereqs:opensuse-42.1-c103199-20180628122439
dependsOn: CentOS_7
testOnly: true
queue:
name: Hosted Ubuntu 1604
matrix:
Build_Debug:
_BuildConfig: Debug
_BuildArch: x64
- template: /eng/build.yml
parameters:
name: OpenSuse_42_3
agentOs: Linux
dockerImage: mcr.microsoft.com/dotnet-buildtools/prereqs:opensuse-42.3-3e800f1-20190501005344
dependsOn: CentOS_7
testOnly: true
queue:
name: Hosted Ubuntu 1604
matrix:
Build_Debug:
_BuildConfig: Debug
_BuildArch: x64
- template: /eng/build.yml
parameters:
name: Ubuntu_14_04
agentOs: Linux
dockerImage: mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-14.04-1735d26-20190521133852
dependsOn: CentOS_7
testOnly: true
queue:
name: Hosted Ubuntu 1604
matrix:
Build_Debug:
_BuildConfig: Debug
_BuildArch: x64
- template: /eng/build.yml
parameters:
name: Ubuntu_16_04
agentOs: Linux
dockerImage: mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-16.04-09ca40b-20190520220842
dependsOn: CentOS_7
testOnly: true
queue:
name: Hosted Ubuntu 1604
matrix:
Build_Debug:
_BuildConfig: Debug
_BuildArch: x64
- template: /eng/build.yml
parameters:
name: Ubuntu_18_04
agentOs: Linux
dockerImage: mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-3e800f1-20190508143252
dependsOn: CentOS_7
testOnly: true
queue:
name: Hosted Ubuntu 1604
matrix:
Build_Debug:
_BuildConfig: Debug
_BuildArch: x64
# Download, sign, package and publish
- template: /eng/common/templates/job/job.yml
parameters:
name: Sign_Package_Publish
dependsOn:
- Windows
- CentOS_7
- Alpine3_6
- MacOS
- Linux_cross
- Linux_cross64
condition: ne(variables['Build.Reason'], 'Schedule')
pool:
name: NetCoreInternal-Pool
queue: BuildPool.Windows.10.Amd64.VS2017
variables:
- _PublishBlobFeedUrl: https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json
- _TeamName: DotNetCore
- _SignType: $(SignType)
enableMicrobuild: true
steps:
# Windows x64 download. Everything under "bin" is published for the Windows x64 build.
- task: DownloadPipelineArtifact@2
displayName: Download Windows x64 and Managed Artifacts
inputs:
artifactName: Windows_x64_Release
targetPath: '$(Build.SourcesDirectory)/artifacts/bin'
condition: succeeded()
# Windows x86 download
- task: DownloadPipelineArtifact@2
displayName: Download Windows x86 Artifacts
inputs:
artifactName: Windows_x86_Release
targetPath: '$(Build.SourcesDirectory)/artifacts/bin/Windows_NT.x86.Release'
condition: succeeded()
# Windows arm download
- task: DownloadPipelineArtifact@2
displayName: Download Windows Arm Artifacts
inputs:
artifactName: Windows_arm_Release
targetPath: '$(Build.SourcesDirectory)/artifacts/bin/Windows_NT.arm.Release'
condition: succeeded()
# Linux x64 download
- task: DownloadPipelineArtifact@2
displayName: Download Linux Artifacts
inputs:
artifactName: CentOS_7_x64_Release
targetPath: '$(Build.SourcesDirectory)/artifacts/bin/Linux.x64.Release'
condition: succeeded()
# Linux MUSL x64 download
- task: DownloadPipelineArtifact@2
displayName: Download Linux Musl Artifacts
inputs:
artifactName: Alpine3_6_x64_Release
targetPath: '$(Build.SourcesDirectory)/artifacts/bin/Linux-musl.x64.Release'
condition: succeeded()
# Linux arm download
- task: DownloadPipelineArtifact@2
displayName: Download Linux Arm Artifacts
inputs:
artifactName: Linux_cross_arm_Release
targetPath: '$(Build.SourcesDirectory)/artifacts/bin/Linux.arm.Release'
condition: succeeded()
# Linux arm64 download
- task: DownloadPipelineArtifact@2
displayName: Download Linux Arm64 Artifacts
inputs:
artifactName: Linux_cross64_arm64_Release
targetPath: '$(Build.SourcesDirectory)/artifacts/bin/Linux.arm64.Release'
condition: succeeded()
# MacOS download
- task: DownloadPipelineArtifact@2
displayName: Download MacOS Artifacts
inputs:
artifactName: MacOS_x64_Release
targetPath: '$(Build.SourcesDirectory)/artifacts/bin/OSX.x64.Release'
condition: succeeded()
# Create nuget packages, sign binaries and publish to blob feed
- script: $(Build.SourcesDirectory)\eng\cipack.cmd
-configuration Release
-prepareMachine
/p:TeamName=$(_TeamName)
/p:DotNetSignType=$(SignType)
/p:DotNetPublishBlobFeedKey=$(dotnetfeed-storage-access-key-1)
/p:DotNetPublishBlobFeedUrl=$(_PublishBlobFeedUrl)
/p:DotNetPublishToBlobFeed=$(PublishPackages)
/p:OfficialBuildId=$(BUILD.BUILDNUMBER)
displayName: Sign / Package
continueOnError: true
condition: succeeded()
# Publish symbols
- task: PowerShell@2
displayName: Publish Symbols
inputs:
filePath: eng\common\sdk-task.ps1
arguments: -task PublishToSymbolServers -restore -msbuildEngine dotnet -configuration Release -verbosity normal
/p:DotNetSymbolServerTokenMsdl=$(microsoft-symbol-server-pat)
/p:DotNetSymbolServerTokenSymWeb=$(symweb-symbol-server-pat)
/p:BlobBasePath='$(Build.SourcesDirectory)/artifacts/packages/Release/NonShipping'
continueOnError: true
condition: and(succeeded(), eq(variables['PublishSymbols'], 'true'))
# Publish package and log build artifacts
- task: PublishBuildArtifacts@1
displayName: Publish Package Artifacts
inputs:
publishLocation: Container
pathtoPublish: '$(Build.SourcesDirectory)/artifacts/packages'
artifactName: Packages
continueOnError: true
condition: always()
- task: PublishBuildArtifacts@1
displayName: Publish Logs Artifacts
inputs:
publishLocation: Container
pathtoPublish: '$(Build.SourcesDirectory)/artifacts/log'
artifactName: Logs_Packaging_Signing
continueOnError: true
condition: always()