-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathazure-pipelines.yml
436 lines (394 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
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
# Starter pipeline
# Start with a minimal pipeline that you can customize to build and deploy your code.
# Add steps that build, run tests, deploy, and more:
# https://aka.ms/yaml
trigger:
- master
- release/*
- hackathon/*
pr:
- master
- release/*
variables:
SiteDirectory: '$(Build.SourcesDirectory)/wizis-web'
MonoRepoDirectory: '$(Build.SourcesDirectory)/syz'
NgSyzDirectory: '$(Build.SourcesDirectory)/packages/ng-syz'
resources:
repositories:
- repository: site
type: git
name: DesignSystem/wizis-web
ref: refs/heads/master
- repository: this
type: github
endpoint: wizsolucoesAdminPAT
name: wizsolucoes/syz
ref: '$(Build.SourceBranch)'
pool:
vmImage: 'ubuntu-latest'
stages:
- stage: Stage
displayName: 'Stage Solution'
condition: or(startsWith(variables['Build.SourceBranch'], 'refs/heads/release/'), startsWith(variables['Build.SourceBranch'], 'refs/heads/hackathon/'))
jobs:
- job: NgSyzLib
pool:
vmImage: 'windows-latest'
displayName: 'NgSyz lib CI'
steps:
- checkout: this
- task: Npm@1
displayName: 'Install dependencies'
inputs:
command: 'install'
workingDir: $(NgSyzDirectory)
- task: SonarQubePrepare@4
continueOnError: true
inputs:
SonarQube: 'SonarQube'
scannerMode: 'CLI'
configMode: 'manual'
cliProjectKey: 'wizsolucoes.syz.ng-syz.ng-syz'
cliProjectName: 'wizsolucoes.syz.ng-syz.ng-syz'
cliProjectVersion: $(Build.BuildNumber)
cliSources: 'packages/ng-syz/projects/ng-syz/src'
extraProperties: |
sonar.typescript.lcov.reportPaths=$(System.DefaultWorkingDirectory)/packages/ng-syz/coverage/ng-syz/lcov.info
sonar.exclusions=**/node_modules/**,**/*.spec.ts,**/main.ts,**/polyfills.ts,**/environments/**,**/*.module.ts,**/test.ts
sonar.tests=packages/ng-syz/projects/ng-syz/src/lib
sonar.test.inclusions=**/*.spec.ts
sonar.analysis.project=$(System.TeamProject)
sonar.analysis.repositoryId=$(Build.Repository.ID)
sonar.analysis.pullRequestId=$(System.PullRequest.PullRequestId)
- task: Npm@1
displayName: 'Build lib'
inputs:
command: custom
verbose: true
customCommand: 'run build:lib:prod'
workingDir: $(NgSyzDirectory)
- task: Npm@1
displayName: 'Test lib'
inputs:
command: custom
verbose: true
customCommand: 'run test:lib:coverage'
workingDir: $(NgSyzDirectory)
- task: Npm@1
displayName: 'Lint lib'
inputs:
command: custom
verbose: true
customCommand: 'run lint:lib'
workingDir: $(NgSyzDirectory)
- task: SonarQubeAnalyze@4
continueOnError: true
- task: SonarQubePublish@4
continueOnError: true
inputs:
pollingTimeoutSec: '300'
- job: NgSyzApp
pool:
vmImage: 'windows-latest'
displayName: 'NgSyz app CI/CD to staging'
steps:
- checkout: this
- script: |
echo Surge login: $(SURGE_LOGIN)
echo Surge token: $(SURGE_TOKEN)
displayName: 'Echo surge variables'
- task: Npm@1
displayName: 'Install dependencies'
inputs:
command: 'install'
workingDir: $(NgSyzDirectory)
- task: SonarQubePrepare@4
continueOnError: true
inputs:
SonarQube: 'SonarQube'
scannerMode: 'CLI'
configMode: 'manual'
cliProjectKey: 'wizsolucoes.syz.ng-syz.app'
cliProjectName: 'wizsolucoes.syz.ng-syz.app'
cliProjectVersion: $(Build.BuildNumber)
cliSources: 'packages/ng-syz/projects/app/src'
extraProperties: |
sonar.typescript.lcov.reportPaths=$(System.DefaultWorkingDirectory)/packages/ng-syz/coverage/app/lcov.info
sonar.exclusions=**/node_modules/**,**/*.spec.ts,**/main.ts,**/polyfills.ts,**/environments/**,**/*.module.ts,**/test.ts
sonar.tests=packages/ng-syz/projects/app/src/app
sonar.test.inclusions=**/*.spec.ts
sonar.analysis.project=$(System.TeamProject)
sonar.analysis.repositoryId=$(Build.Repository.ID)
sonar.analysis.pullRequestId=$(System.PullRequest.PullRequestId)
- task: Npm@1
displayName: 'Build lib'
inputs:
command: custom
verbose: true
customCommand: 'run build:lib:prod'
workingDir: $(NgSyzDirectory)
- task: Npm@1
displayName: 'Build app'
inputs:
command: custom
verbose: true
customCommand: 'run build:app:prod'
workingDir: $(NgSyzDirectory)
- task: Npm@1
displayName: 'Test app'
inputs:
command: custom
verbose: true
customCommand: 'run test:app:coverage'
workingDir: $(NgSyzDirectory)
- task: Npm@1
displayName: 'Lint app'
inputs:
command: custom
verbose: true
customCommand: 'run lint:app'
workingDir: $(NgSyzDirectory)
- task: SonarQubeAnalyze@4
continueOnError: true
- task: SonarQubePublish@4
continueOnError: true
inputs:
pollingTimeoutSec: '300'
- ${{ if startsWith(variables['Build.SourceBranch'], 'refs/heads/release/') }}:
- task: AzureFileCopy@4
displayName: 'Publish app to storage'
inputs:
SourcePath: '$(NgSyzDirectory)/dist/app/*'
azureSubscription: 'AmbientesDevHml'
Destination: 'AzureBlob'
storage: 'sysstorybookhmlstg'
ContainerName: '$web'
- ${{ if startsWith(variables['Build.SourceBranch'], 'refs/heads/hackathon/') }}:
- script: |
echo Surge login: $(SURGE_LOGIN)
echo Surge token: $(SURGE_TOKEN)
npm i -g surge
surge --project $(NgSyzDirectory)/dist/app --domain wiz-hackasyz-2021-$(Build.SourceBranchName).surge.sh
displayName: 'Publish to Surge'
- job: Site
displayName: 'Publish Syz site to staging'
steps:
- checkout: this
- checkout: site
# Build components
- task: NodeTool@0
displayName: 'Use Node 14'
inputs:
versionSpec: '14.x'
- task: Npm@1
displayName: 'Install dependencies'
inputs:
command: ci
workingDir: $(MonoRepoDirectory)
- task: Npm@1
displayName: 'Bootstrap'
inputs:
command: custom
verbose: false
customCommand: 'run bootstrap'
workingDir: $(MonoRepoDirectory)
- task: Npm@1
displayName: 'Build'
inputs:
command: custom
verbose: false
customCommand: 'run build'
workingDir: $(MonoRepoDirectory)
# Build site documentaion and publish site
- task: Npm@1
displayName: 'Install site dependencies'
inputs:
command: ci
workingDir: $(SiteDirectory)
- script: node docs.js --site-path=$(SiteDirectory)
displayName: 'Generate site documentation'
workingDirectory: $(MonoRepoDirectory)
- task: Npm@1
displayName: 'Build site'
inputs:
command: custom
verbose: false
customCommand: 'run build'
workingDir: $(SiteDirectory)
- task: CopyFiles@2
displayName: 'Copy site dist to artifact staging directory'
inputs:
SourceFolder: '$(SiteDirectory)/dist/angular-wiz-repositorio'
Contents: '**'
TargetFolder: '$(Build.ArtifactStagingDirectory)'
- task: ArchiveFiles@2
displayName: 'Archive site dist'
inputs:
rootFolderOrFile: '$(Build.ArtifactStagingDirectory)'
includeRootFolder: false
- task: AzureWebApp@1
displayName: 'Deploy site to Azure Web App'
inputs:
azureSubscription: '$(HML_SITE_AZURE_SUBSCRIPTION)'
appType: webApp
appName: '$(HML_SITE_APP_NAME)'
package: $(System.ArtifactsDirectory)/*.zip
- stage: Publish
condition: eq(variables['build.sourceBranch'], 'refs/heads/master')
jobs:
- job: Publish
displayName: 'Publish libs and SYZ site'
condition: succeeded()
steps:
- checkout: this
persistCredentials: 'true'
- checkout: site
# Configure Lerna Bot
- task: CmdLine@2
displayName: Configure Lerna Bot
inputs:
script: |
git config --global user.email "[email protected]"
git config --global user.name "Lerna bot"
workingDirectory: $(MonoRepoDirectory)
- task: CmdLine@2
displayName: Checkout $(Build.SourceBranchName)
inputs:
script: 'git checkout $(Build.SourceBranchName)'
workingDirectory: $(MonoRepoDirectory)
# Build and test components
- task: NodeTool@0
displayName: 'Use Node 14'
inputs:
versionSpec: '14.x'
- task: Npm@1
displayName: 'Install dependencies'
inputs:
command: ci
workingDir: $(MonoRepoDirectory)
- task: Npm@1
displayName: 'Bootstrap'
inputs:
command: custom
verbose: false
customCommand: 'run bootstrap'
workingDir: $(MonoRepoDirectory)
- task: Npm@1
displayName: 'Build'
inputs:
command: custom
verbose: false
customCommand: 'run build'
workingDir: $(MonoRepoDirectory)
- task: Npm@1
displayName: 'Test'
inputs:
command: 'custom'
verbose: false
customCommand: 'run test'
workingDir: $(MonoRepoDirectory)
# Version and publish components
- task: Npm@1
displayName: 'Bump versions'
inputs:
command: 'custom'
verbose: true
customCommand: 'run version'
workingDir: $(MonoRepoDirectory)
# Build before publishing to get updated packages.json version
- task: Npm@1
displayName: 'Build'
inputs:
command: custom
verbose: false
customCommand: 'run build'
workingDir: $(MonoRepoDirectory)
- task: Npm@1
displayName: 'Publish'
inputs:
command: 'custom'
customCommand: 'run release'
customEndpoint: 'npmjs'
workingDir: $(MonoRepoDirectory)
# Build site documentaion and publish site
- task: Npm@1
displayName: 'Install site dependencies'
inputs:
command: ci
workingDir: $(SiteDirectory)
- script: node docs.js --site-path=$(SiteDirectory)
displayName: 'Generate site documentation'
workingDirectory: $(MonoRepoDirectory)
- task: Npm@1
displayName: 'Build site'
inputs:
command: custom
verbose: false
customCommand: 'run build'
workingDir: $(SiteDirectory)
- task: CopyFiles@2
displayName: 'Copy site dist to artifact staging directory'
inputs:
SourceFolder: '$(SiteDirectory)/dist/angular-wiz-repositorio'
Contents: '**'
TargetFolder: '$(Build.ArtifactStagingDirectory)'
- task: ArchiveFiles@2
displayName: 'Archive site dist'
inputs:
rootFolderOrFile: '$(Build.ArtifactStagingDirectory)'
includeRootFolder: false
- task: AzureWebApp@1
displayName: 'Deploy site to Azure Web App'
inputs:
azureSubscription: '$(PRD_SITE_AZURE_SUBSCRIPTION)'
appType: webApp
appName: '$(PRD_SITE_APP_NAME)'
package: $(System.ArtifactsDirectory)/*.zip
- job: NgSyz
dependsOn: Publish
pool:
vmImage: 'windows-latest'
displayName: 'Publish NgSyz to production'
steps:
- checkout: this
- task: Npm@1
displayName: 'Install dependencies'
inputs:
command: 'install'
workingDir: $(NgSyzDirectory)
- task: Npm@1
displayName: 'Build lib'
inputs:
command: custom
verbose: true
customCommand: 'run build:lib:prod'
workingDir: $(NgSyzDirectory)
- task: Npm@1
displayName: 'Test lib'
inputs:
command: custom
verbose: true
customCommand: 'run test:lib'
workingDir: $(NgSyzDirectory)
- task: Npm@1
displayName: 'Build app'
inputs:
command: custom
verbose: true
customCommand: 'run build:app:prod'
workingDir: $(NgSyzDirectory)
- task: Npm@1
displayName: 'Test app'
inputs:
command: custom
verbose: true
customCommand: 'run test:app'
workingDir: $(NgSyzDirectory)
- task: AzureFileCopy@4
displayName: 'Publish app to storage'
inputs:
SourcePath: '$(NgSyzDirectory)/dist/app/*'
azureSubscription: 'AmbienteCorporativoExterior'
Destination: 'AzureBlob'
storage: 'sysstorybookprdstg'
ContainerName: '$web'