forked from dotnet/interactive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
410 lines (370 loc) · 17.1 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
398
399
400
401
402
403
404
405
406
407
408
409
410
# CI and PR triggers
trigger:
- main
- feature/*
- release/*
pr:
- main
- feature/*
- release/*
# Variables
variables:
- name: _TeamName
value: DotNetInteractive
- name: _BuildConfig
value: Release
- name: _PublishUsingPipelines
value: true
- name: _DotNetArtifactsCategory
value: .NETCore
- name: DotNetSdkVersion
value: '5.0.400'
- name: PocketLoggerLogPath
value: $(Build.SourcesDirectory)/artifacts/log/$(_BuildConfig)
- name: TryDotNetPackagesPath
value: $(Build.SourcesDirectory)/artifacts/.trydotnet/packages
- name: NodeJSVersion
value: '14.17.5'
- name: _TestArgs
value: ''
stages:
- stage: build
displayName: Build and Test
jobs:
- template: /eng/common/templates/jobs/jobs.yml
parameters:
enableMicrobuild: true
enablePublishBuildArtifacts: true
enablePublishTestResults: true
enablePublishBuildAssets: true
enablePublishUsingPipelines: $(_PublishUsingPipelines)
jobs:
- job: Windows_NT
pool:
${{ if or(eq(variables['System.TeamProject'], 'public'), in(variables['Build.Reason'], 'PullRequest')) }}:
name: NetCorePublic-Pool
queue: BuildPool.Windows.10.Amd64.VS2019.Open
${{ if and(ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}:
name: NetCoreInternal-Pool
queue: buildpool.windows.10.amd64.vs2019
timeoutInMinutes: 90
variables:
# Enable signing for internal, non-PR builds
- ${{ if and(ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}:
- group: DotNet-Blob-Feed
- group: DotNet-Symbol-Server-Pats
- name: _SignType
value: Real
- name: _DotNetPublishToBlobFeed
value: true
- name: _BuildArgs
value: /p:SignType=$(_SignType)
/p:DotNetSignType=$(_SignType)
/p:MicroBuild_SigningEnabled=true
/p:OverridePackageSource=https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json
/p:TeamName=$(_TeamName)
/p:DotNetPublishBlobFeedKey=$(dotnetfeed-storage-access-key-1)
/p:DotNetPublishBlobFeedUrl=https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json
/p:DotNetPublishToBlobFeed=true
/p:DotNetPublishUsingPipelines=$(_PublishUsingPipelines)
/p:DotNetArtifactsCategory=$(_DotNetArtifactsCategory)
/p:DotNetSymbolServerTokenMsdl=$(microsoft-symbol-server-pat)
/p:DotNetSymbolServerTokenSymWeb=$(symweb-symbol-server-pat)
/p:OfficialBuildId=$(BUILD.BUILDNUMBER)
/p:PublishToSymbolServer=true
# else
- ${{ if or(eq(variables['System.TeamProject'], 'public'), in(variables['Build.Reason'], 'PullRequest')) }}:
- name: _SignType
value: Test
- name: _BuildArgs
value: /p:SignType=$(_SignType)
# SkipTests
# - ${{ if ne(variables['SkipTests'], 'true') }}:
# - name: _TestArgs
# value: -test
steps:
- script: git config --global core.longpaths true
displayName: Enable `git clean` to handle long paths
- checkout: self
clean: true
# Azure DevOps doesn't support git symlinks on Windows so we have to fake it
- pwsh: . "$(Build.SourcesDirectory)\src\ensure-symlinks.ps1"
displayName: ensure symlinks
- task: NodeTool@0
displayName: Add NodeJS/npm
inputs:
versionSpec: $(NodeJSVersion)
- task: UseDotNet@2
displayName: Use .NET SDK 5.0
inputs:
packageType: sdk
version: $(DotNetSdkVersion)
installationPath: $(Agent.ToolsDirectory)\dotnet
- script: |
robocopy "eng\resources" "$(Build.SourcesDirectory)\artifacts"
:: robocopy return codes are terrible; 1 means files were copied
if "%errorlevel%" == "1" exit /b 0
exit /b 1
displayName: Prevent test directory crawling
- script: eng\CIBuild.cmd
-configuration $(_BuildConfig)
-prepareMachine
-sign
$(_TestArgs)
$(_BuildArgs)
displayName: Build
env:
POCKETLOGGER_LOG_PATH: $(PocketLoggerLogPath)
TRYDOTNET_PACKAGES_PATH: $(TryDotNetPackagesPath)
- script: dotnet test -l trx --no-build --blame-hang-timeout 5m --blame-hang-dump-type full -c $(_BuildConfig) --results-directory $(Build.SourcesDirectory)/artifacts/TestResults/$(_BuildConfig)
displayName: Test / Blame
workingDirectory: $(Build.SourcesDirectory)
condition: ne(variables['SkipTests'], 'true')
- pwsh: Get-ChildItem *.dmp -Recurse | Remove-Item
displayName: Delete dump files
workingDirectory: $(Build.SourcesDirectory)/artifacts/TestResults/$(_BuildConfig)
condition: and(ne(variables['KeepDumps'], 'true'), ne(variables['SkipTests'], 'true'))
- task: PublishBuildArtifacts@1
displayName: Publish Test results and Blame dumps
inputs:
pathToPublish: $(Build.SourcesDirectory)/artifacts/TestResults/$(_BuildConfig)
artifactName: Windows_test_results_and_dumps
artifactType: container
condition: failed()
- script: npm run ciTest
displayName: NPM tests
workingDirectory: "$(Build.SourcesDirectory)/src/Microsoft.DotNet.Interactive.Js"
condition: ne(variables['SkipTests'], 'true')
# build and test VS Code extension
- script: npm install
displayName: npm install (VS Code stable)
workingDirectory: "$(Build.SourcesDirectory)/src/dotnet-interactive-vscode/stable"
- script: npm run ciTest
displayName: npm test (VS Code stable)
workingDirectory: "$(Build.SourcesDirectory)/src/dotnet-interactive-vscode/stable"
condition: ne(variables['SkipTests'], 'true')
- script: npm install
displayName: npm install (VS Code insiders)
workingDirectory: "$(Build.SourcesDirectory)/src/dotnet-interactive-vscode/insiders"
- script: npm run ciTest
displayName: npm test (VS Code insiders)
workingDirectory: "$(Build.SourcesDirectory)/src/dotnet-interactive-vscode/insiders"
condition: ne(variables['SkipTests'], 'true')
# build and test npm package
- script: npm install
displayName: npm install (npm package)
workingDirectory: "$(Build.SourcesDirectory)/src/dotnet-interactive-npm"
- script: npm run ciTest
displayName: npm test (npm package)
workingDirectory: "$(Build.SourcesDirectory)/src/dotnet-interactive-npm"
condition: ne(variables['SkipTests'], 'true')
# publish VS Code and npm test results
- task: PublishTestResults@2
displayName: Publish VS Code extension and npm test results
inputs:
testResultsFormat: VSTest
testResultsFiles: '**/*.trx'
searchFolder: '$(Build.SourcesDirectory)/artifacts/TestResults'
condition: always()
# pack and publish vscode and npm
- task: PowerShell@2
displayName: Pack VS Code Extensions
inputs:
filePath: $(Build.SourcesDirectory)/eng/package/PackVSCodeExtension.ps1
arguments: -stableToolVersionNumber $(StableToolVersionNumber) -gitSha $(Build.SourceVersion) -outDir "$(Build.ArtifactStagingDirectory)\vscode"
workingDirectory: "$(Build.SourcesDirectory)/src/dotnet-interactive-vscode"
pwsh: true
- task: PublishBuildArtifacts@1
displayName: Publish VSCode extension artifacts
inputs:
pathToPublish: $(Build.ArtifactStagingDirectory)\vscode
artifactName: vscode
artifactType: container
- task: PowerShell@2
displayName: Pack NPM package
inputs:
filePath: $(Build.SourcesDirectory)/eng/package/PackNpmPackage.ps1
arguments: -packageVersionNumber $(StableToolVersionNumber) -gitSha $(Build.SourceVersion) -outDir "$(Build.ArtifactStagingDirectory)\npm"
workingDirectory: "$(Build.SourcesDirectory)/src/dotnet-interactive-npm"
pwsh: true
- task: PublishBuildArtifacts@1
displayName: Publish NPM package artifacts
inputs:
pathToPublish: $(Build.ArtifactStagingDirectory)\npm
artifactName: npm
artifactType: container
# Prevent symbols packages from being saved in the following `packages` artifact because they're incomplete.
# See `eng/AfterSolutionBuild.targets:StripFilesFromSymbolPackages` for details.
- script: del /S $(Build.SourcesDirectory)\artifacts\packages\$(_BuildConfig)\*.symbols.nupkg
displayName: Clean symbol packages
- task: PublishBuildArtifacts@1
displayName: Publish packages to artifacts container
inputs:
pathToPublish: $(Build.SourcesDirectory)\artifacts\packages\$(_BuildConfig)
artifactName: packages
artifactType: container
- template: /eng/common/templates/jobs/jobs.yml
parameters:
enableMicrobuild: true
enablePublishBuildArtifacts: true
enablePublishTestResults: true
enablePublishBuildAssets: false
enablePublishUsingPipelines: false
jobs:
- job: Linux
pool:
${{ if or(eq(variables['System.TeamProject'], 'public'), in(variables['Build.Reason'], 'PullRequest')) }}:
name: NetCorePublic-Pool
queue: BuildPool.Ubuntu.1604.amd64.Open
${{ if and(ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}:
name: NetCoreInternal-Pool
queue: BuildPool.Ubuntu.1604.amd64
variables:
# Enable signing for internal, non-PR builds
- ${{ if and(ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}:
- name: _SignType
value: Test
- name: _BuildArgs
value: /p:SignType=$(_SignType)
/p:DotNetSignType=$(_SignType)
/p:OverridePackageSource=https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json
/p:TeamName=$(_TeamName)
/p:OfficialBuildId=$(BUILD.BUILDNUMBER)
# else
- ${{ if or(eq(variables['System.TeamProject'], 'public'), in(variables['Build.Reason'], 'PullRequest')) }}:
- name: _SignType
value: Test
- name: _BuildArgs
value: /p:SignType=$(_SignType)
# SkipTests
# - ${{ if ne(variables['SkipTests'], 'true') }}:
# - name: _TestArgs
# value: --test
steps:
- script: git config --global core.longpaths true
displayName: Enable `git clean` to handle long paths
- checkout: self
clean: true
- task: NodeTool@0
displayName: Add NodeJS/npm
inputs:
versionSpec: $(NodeJSVersion)
- task: UseDotNet@2
displayName: Use .NET SDK
inputs:
packageType: sdk
version: $(DotNetSdkVersion)
installationPath: $(Agent.ToolsDirectory)/dotnet
- script: |
mkdir -p "$(Build.SourcesDirectory)/artifacts"
cp eng/resources/* "$(Build.SourcesDirectory)/artifacts"
displayName: Prevent test directory crawling
- script: ./eng/cibuild.sh
--configuration $(_BuildConfig)
--prepareMachine
$(_TestArgs)
displayName: Build
env:
POCKETLOGGER_LOG_PATH: $(PocketLoggerLogPath)
TRYDOTNET_PACKAGES_PATH: $(TryDotNetPackagesPath)
- script: dotnet test -l trx --no-build --blame-hang-timeout 5m --blame-hang-dump-type full -c $(_BuildConfig) --results-directory $(Build.SourcesDirectory)/artifacts/TestResults/$(_BuildConfig)
displayName: Test / Blame
workingDirectory: $(Build.SourcesDirectory)
condition: ne(variables['SkipTests'], 'true')
- pwsh: Get-ChildItem *.dmp -Recurse | Remove-Item
displayName: Delete dump files
workingDirectory: $(Build.SourcesDirectory)/artifacts/TestResults/$(_BuildConfig)
condition: and(ne(variables['KeepDumps'], 'true'), ne(variables['SkipTests'], 'true'))
- task: PublishBuildArtifacts@1
displayName: Publish Test results and Blame dumps
inputs:
pathToPublish: $(Build.SourcesDirectory)/artifacts/TestResults/$(_BuildConfig)
artifactName: Linux_test_results_and_dumps
artifactType: container
condition: failed()
- script: npm run ciTest
displayName: NPM tests
workingDirectory: "$(Build.SourcesDirectory)/src/Microsoft.DotNet.Interactive.Js"
condition: ne(variables['SkipTests'], 'true')
- template: /eng/common/templates/jobs/jobs.yml
parameters:
enableMicrobuild: true
jobs:
- job: Dockerfile_official_image
pool:
${{ if or(eq(variables['System.TeamProject'], 'public'), in(variables['Build.Reason'], 'PullRequest')) }}:
name: NetCorePublic-Pool
queue: BuildPool.Ubuntu.1604.amd64.Open
${{ if and(ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}:
name: NetCoreInternal-Pool
queue: BuildPool.Ubuntu.1604.amd64
steps:
- checkout: self
clean: true
- task: Docker@2
displayName: Build official Dockerfile
inputs:
command: build
Dockerfile: "$(Build.SourcesDirectory)/samples/docker-image/Dockerfile"
- template: /eng/common/templates/jobs/jobs.yml
parameters:
enableMicrobuild: true
jobs:
- job: Dockerfile_Main
pool:
${{ if or(eq(variables['System.TeamProject'], 'public'), in(variables['Build.Reason'], 'PullRequest')) }}:
name: NetCorePublic-Pool
queue: BuildPool.Ubuntu.1604.amd64.Open
${{ if and(ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}:
name: NetCoreInternal-Pool
queue: BuildPool.Ubuntu.1604.amd64
steps:
- checkout: self
clean: true
- task: Docker@2
displayName: Build main Dockerfile
inputs:
command: build
Dockerfile: "$(Build.SourcesDirectory)/Dockerfile"
- template: /eng/common/templates/jobs/jobs.yml
parameters:
enableMicrobuild: true
jobs:
- job: Dockerfile_Binder_Dependency
pool:
${{ if or(eq(variables['System.TeamProject'], 'public'), in(variables['Build.Reason'], 'PullRequest')) }}:
name: NetCorePublic-Pool
queue: BuildPool.Ubuntu.1604.amd64.Open
${{ if and(ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}:
name: NetCoreInternal-Pool
queue: BuildPool.Ubuntu.1604.amd64
steps:
- checkout: self
clean: true
- task: Docker@2
displayName: Build Binder dependency Dockerfile
inputs:
command: build
Dockerfile: "$(Build.SourcesDirectory)/samples/my binder/Dockerfile"
#---------------------------------------------------------------------------------------------------------------------#
# Post Build #
#---------------------------------------------------------------------------------------------------------------------#
- ${{ if and(ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}:
- template: eng/common/templates/post-build/post-build.yml
parameters:
publishingInfraVersion: 3
# Symbol validation is not entirely reliable as of yet, so should be turned off until https://github.com/dotnet/arcade/issues/2871 is resolved.
enableSymbolValidation: false
# SourceLink improperly looks for generated files. See https://github.com/dotnet/arcade/issues/3069
enableSourceLinkValidation: false
#---------------------------------------------------------------------------------------------------------------------#
# NPM Publish #
#---------------------------------------------------------------------------------------------------------------------#
- ${{ if and(ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}:
- template: eng/publish/publish-npm.yml
parameters:
packageName: microsoft-dotnet-interactive-*.tgz
registryUrl: pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-tools/npm/registry/
registryUser: dnceng
registryEmail: dnceng@microsoft.com
publishingBranch: main