-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathTailSpin.SpaceGame.Pipeline.yml
404 lines (369 loc) · 12 KB
/
TailSpin.SpaceGame.Pipeline.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
name: $(Major).$(Minor).$(Patch)
trigger: none
variables:
# Required variables
appName: 'tailspin-space-game' # Prefix for resource group, site URL, web app, and app service plan
projectName: 'Tailspin.SpaceGame' # Project and folder name prefix
region: 'WestUS' # Region for all resources
dbName: 'tailspindatabase' # Name of database
serviceConnection: SpaceGame-NonProd # Default service principal, prod set in prod stage and requires approval
storageAccountName: 'spacegamedbstorage$(System.StageName)' # Name of storage account. Must be unique and lowercase.
appServiceSku: 'B1' # Default SKU, prod and test set to S1
# Other variables
Major: '1'
Minor: '1'
Patch: $[counter(format('{0}.{1}', variables['Major'], variables['Minor']), 0)]
buildConfiguration: 'Release'
dotnetSdkVersion: '5.0.103'
resourceGroup: $(appName)-$(System.StageName)-rg
appServiceName: $(appName)-$(System.StageName)-$(appID)
appServicePlanName: $(appName)-$(System.StageName)-service-plan
sqlServerName: '$(appName)-$(System.StageName)-sql'
SITE_URL: 'https://$(appName)-$(System.StageName)-$(appID).azurewebsites.net'
wwwrootDir: '$(webFolder)/wwwroot' # web server dir
webFolder: '$(projectName).Web'
dbSchemaFolder: '$(projectName).Database'
infraAsCodeFolder: '$(projectName).Bicep'
# Repo where templates live
resources:
repositories:
- repository: templates
type: github
name: MarcusFelling/Demo.Templates
endpoint: templates
stages:
- stage: 'Build'
jobs:
- job: 'BuildApp'
pool:
vmImage: 'windows-2019'
demands:
- npm
steps:
- task: UseDotNet@2
displayName: 'Use .NET Core sdk'
inputs:
packageType: sdk
version: $(dotnetSdkVersion)
installationPath: $(Agent.ToolsDirectory)/dotnet
- task: DotNetCoreCLI@2
displayName: 'Install ReportGenerator'
inputs:
command: custom
custom: tool
arguments: 'install --global dotnet-reportgenerator-globaltool'
- task: Npm@1
displayName: 'Run npm install'
inputs:
verbose: false
- script: './node_modules/.bin/node-sass $(wwwrootDir) --output $(wwwrootDir)'
displayName: 'Compile Sass assets'
- task: gulp@1
displayName: 'Run gulp tasks'
- script: 'echo "$(Build.DefinitionName), $(Build.BuildId), $(Build.BuildNumber)" > buildinfo.txt'
displayName: 'Write build info'
workingDirectory: $(wwwrootDir)
- task: DotNetCoreCLI@2
displayName: 'Restore project dependencies'
inputs:
command: 'restore'
projects: '**/*.csproj'
- task: DotNetCoreCLI@2
displayName: 'Build the project - $(buildConfiguration)'
inputs:
command: 'build'
arguments: '--no-restore --configuration $(buildConfiguration)'
projects: '**/*.csproj'
- task: DotNetCoreCLI@2
displayName: 'Run unit tests - $(buildConfiguration)'
inputs:
command: 'test'
arguments: '--no-build --configuration $(buildConfiguration) /p:CollectCoverage=true /p:CoverletOutputFormat=cobertura /p:CoverletOutput=$(Build.SourcesDirectory)/TestResults/Coverage/'
publishTestResults: true
projects: '**/*.Tests.csproj'
testRunTitle: 'Unit Tests'
- script: |
reportgenerator -reports:$(Build.SourcesDirectory)/**/coverage.cobertura.xml -targetdir:$(Build.SourcesDirectory)/CodeCoverage -reporttypes:HtmlInline_AzurePipelines
displayName: 'Create code coverage report'
- task: PublishCodeCoverageResults@1
displayName: 'Publish code coverage report'
inputs:
codeCoverageTool: 'cobertura'
summaryFileLocation: '$(Build.SourcesDirectory)/**/coverage.cobertura.xml'
- task: DotNetCoreCLI@2
displayName: 'Publish the project - $(buildConfiguration)'
inputs:
command: 'publish'
projects: '**/$(webFolder).csproj'
publishWebProjects: false
arguments: '--no-build --configuration $(buildConfiguration) --output $(Build.ArtifactStagingDirectory)/$(buildConfiguration)'
zipAfterPublish: true
- publish: '$(Build.ArtifactStagingDirectory)'
artifact: dropApp
- job: BuildDacpac
pool:
vmImage: 'windows-2019'
steps:
- task: DotNetCoreCLI@2
displayName: 'Restore project dependencies'
inputs:
command: 'restore'
projects: '**/*.csproj'
- task: VSBuild@1
displayName: 'Build the database project'
inputs:
project: '**/*.sqlproj'
- task: CopyFiles@2
displayName: 'Copy dacpac file to staging directory'
inputs:
contents: |
$(dbSchemaFolder)/bin/**/*.dacpac
targetFolder: '$(Build.StagingDirectory)'
- task: PublishBuildArtifacts@1
displayName: 'Publish Artifact'
inputs:
pathToPublish: '$(Build.ArtifactStagingDirectory)'
artifactName: dropDacpac
condition: succeededOrFailed()
- job: BuildBicep
pool:
vmImage: 'ubuntu-20.04'
steps:
- task: AzureCLI@2
displayName: 'Run Bicep Build'
condition: succeeded()
inputs:
azureSubscription: '$(serviceConnection)'
scriptType: 'pscore'
scriptLocation: 'inlineScript'
inlineScript: 'az bicep build --file $(infraAsCodeFolder)/main.bicep'
- task: CopyFiles@2
displayName: 'Copy Bicep templates to staging directory'
inputs:
contents: |
$(infraAsCodeFolder)/**/*.bicep
targetFolder: '$(Build.StagingDirectory)'
- task: PublishBuildArtifacts@1
displayName: 'Publish Artifact'
inputs:
pathToPublish: '$(Build.ArtifactStagingDirectory)'
artifactName: dropIaC
condition: succeededOrFailed()
- stage: 'dev'
displayName: 'Deploy to the dev environment'
dependsOn:
- Build
condition: succeeded('Build')
jobs:
- deployment: Deploy
pool:
vmImage: 'windows-2019'
environment: dev
variables:
- group: SpaceGame
- name: appID
value: $(Build.BuildId)
- name: devEnv
value: 'true'
strategy:
runOnce:
deploy:
steps:
- template: spacegame-bicep-deploy.yml@templates
- job: DBSchemaApproval
dependsOn: ReviewApp
condition: and(succeeded(), eq(variables['schemaChanged'], True))
pool: server
variables:
- group: SpaceGame
steps:
- task: ManualValidation@0
inputs:
notifyUsers: '$(adminEmails)'
instructions: 'DBA approval required for schema change'
- deployment: PostDBSchemaApproval
dependsOn:
- DBSchemaApproval
pool:
vmImage: 'windows-2019'
environment: dev
variables:
- group: SpaceGame
strategy:
runOnce:
deploy:
steps:
- task: PowerShell@2
displayName: 'Remove "schemaChanged" pipeline variable'
inputs:
targetType: 'inline'
script: |
Install-Module VSTeam -Scope CurrentUser -Force
Set-VSTeamAccount –Account $(System.CollectionUri) -PersonalAccessToken $(PAT)
$methodParameters = @{
ProjectName = "$(System.TeamProject)"
Name = "SpaceGame"}
$vg = Get-VSTeamVariableGroup @methodParameters
$vars = @{}
$vg.variables | Get-Member -MemberType *Property | %{$vars.($_.Name) = $vg.variables.($_.Name)}
$vars.Remove("schemaChanged")
$methodParameters = @{
id = $vg.id
ProjectName = "$(System.TeamProject)"
Name = "SpaceGame"
Description = ""
Type = "Vsts"
Variables = $vars}
Update-VSTeamVariableGroup @methodParameters
- job: ReviewApp
dependsOn:
- Deploy
condition: succeeded('Deploy')
pool:
vmImage: 'ubuntu-20.04'
variables:
- group: SpaceGame
- name: appID
value: $(Build.BuildId)
steps:
- task: GitHubComment@0
displayName: 'Add PR comment with site url'
inputs:
gitHubConnection: 'GitHubSpaceGame'
repositoryName: '$(Build.Repository.Name)'
comment: 'Your changes are ready for testing: $(SITE_URL)'
- stage: 'test'
displayName: 'Deploy to the test environment'
dependsOn:
- dev
jobs:
- deployment: Deploy
pool:
vmImage: 'windows-2019'
environment: test
variables:
- group: SpaceGame
- name: appID
value: '26178'
- name: appServiceSku
value: 'S1'
- name: devEnv
value: 'false'
strategy:
runOnce:
deploy:
steps:
- template: spacegame-bicep-deploy.yml@templates
- job: RunUITests
condition: succeeded('Deploy')
dependsOn: Deploy
displayName: 'Run UI tests'
pool:
vmImage: 'windows-2019'
variables:
- group: SpaceGame
- name: appID
value: '26178'
steps:
- template: functional-tests.yml@templates
- job: RunLoadTests
condition: succeeded('RunUITests')
dependsOn: RunUITests
displayName: 'Run load tests'
pool:
vmImage: 'ubuntu-20.04'
variables:
jmeterVersion: '5.4'
steps:
- template: load-tests.yml@templates
- job: DBSchemaApproval
dependsOn: RunLoadTests
condition: and(succeeded(), eq(variables['schemaChanged'], True))
pool: server
variables:
- group: SpaceGame
steps:
- task: ManualValidation@0
inputs:
notifyUsers: $(adminEmails)
instructions: 'DBA approval required for schema change'
- deployment: PostDBSchemaApproval
dependsOn:
- DBSchemaApproval
pool:
vmImage: 'windows-2019'
environment: dev
variables:
- group: SpaceGame
strategy:
runOnce:
deploy:
steps:
- task: PowerShell@2
displayName: 'Remove "schemaChanged" pipeline variable'
inputs:
targetType: 'inline'
script: |
Install-Module VSTeam -Scope CurrentUser -Force
Set-VSTeamAccount –Account $(System.CollectionUri) -PersonalAccessToken $(PAT)
$methodParameters = @{
ProjectName = "$(System.TeamProject)"
Name = "SpaceGame"}
$vg = Get-VSTeamVariableGroup @methodParameters
$vars = @{}
$vg.variables | Get-Member -MemberType *Property | %{$vars.($_.Name) = $vg.variables.($_.Name)}
$vars.Remove("schemaChanged")
$methodParameters = @{
id = $vg.id
ProjectName = "$(System.TeamProject)"
Name = "SpaceGame"
Description = ""
Type = "Vsts"
Variables = $vars}
Update-VSTeamVariableGroup @methodParameters
- stage: 'prod'
displayName: 'Deploy to the production environment'
dependsOn: Test
condition: succeeded('Test')
jobs:
- deployment: Deploy
pool:
vmImage: 'windows-2019'
environment: prod
variables:
- group: SpaceGame
- name: serviceConnection
value: SpaceGame-Prod
- name: appServiceSku
value: 'S1'
- name: appID
value: '26178'
- name: devEnv
value: 'false'
strategy:
runOnce:
deploy:
steps:
- template: spacegame-bicep-deploy.yml@templates
- stage: 'Cleanup'
displayName: 'Cleanup dev environment'
condition: or(failed(), succeeded('prod'))
jobs:
- deployment: Deploy
pool:
vmImage: 'windows-2019'
environment: dev
variables:
- group: SpaceGame
- name: appID
value: $(Build.BuildId)
strategy:
runOnce:
deploy:
steps:
- task: AzureCLI@2
inputs:
azureSubscription: $(serviceConnection)
scriptType: 'pscore'
scriptLocation: 'inlineScript'
inlineScript: 'az webapp delete --name $(appName)-dev-$(appID) --resource-group $(appName)-dev-rg'