@@ -84,14 +84,16 @@ jobs:
84
84
steps :
85
85
- pwsh : if ($IsLinux -or $IsMacOS) { df -h } else { Get-Volume }
86
86
displayName : Get the volume information before the run
87
+ condition : always()
87
88
88
89
# prepare
89
90
- checkout : self
90
91
submodules : recursive
91
92
- template : /scripts/azure-templates-variables.yml@self
92
93
93
- - pwsh : if ($IsLinux -or $IsMacOS) { df -h } else { Get-Volume }
94
+ - pwsh : .\scripts\get-free-space.ps1
94
95
displayName : Get the volume information after the checkout
96
+ condition : always()
95
97
96
98
# # checkout required skia PR
97
99
# - pwsh: .\scripts\checkout-skia.ps1 -GitHubToken $(GitHub.Token.PublicAccess)
@@ -109,6 +111,7 @@ jobs:
109
111
110
112
- pwsh : .\scripts\get-free-space.ps1
111
113
displayName : Get the volume information before the provisioning
114
+ condition : always()
112
115
113
116
# provisioning steps
114
117
- ${{ if ne(parameters.buildAgent.provisioningSteps, '') }} :
@@ -284,6 +287,7 @@ jobs:
284
287
285
288
- pwsh : .\scripts\get-free-space.ps1
286
289
displayName : Get the volume information before downloading artifacts
290
+ condition : always()
287
291
288
292
# download artifacts
289
293
- template : /scripts/azure-templates-download-artifacts.yml@self
@@ -299,6 +303,7 @@ jobs:
299
303
300
304
- pwsh : .\scripts\get-free-space.ps1
301
305
displayName : Get the volume information after downloading artifacts
306
+ condition : always()
302
307
303
308
# pre-build steps
304
309
- ${{ if ne(parameters.buildAgent.preBuildSteps, '') }} :
@@ -308,6 +313,7 @@ jobs:
308
313
309
314
- pwsh : .\scripts\get-free-space.ps1
310
315
displayName : Get the volume information before the build
316
+ condition : always()
311
317
312
318
# actual build
313
319
- ${{ if ne(parameters.skipSteps, 'true') }} :
@@ -379,6 +385,7 @@ jobs:
379
385
380
386
- pwsh : .\scripts\get-free-space.ps1
381
387
displayName : Get the volume information after the build
388
+ condition : always()
382
389
383
390
# post-build steps
384
391
- ${{ parameters.postBuildSteps }}
@@ -388,3 +395,4 @@ jobs:
388
395
389
396
- pwsh : .\scripts\get-free-space.ps1
390
397
displayName : Get the volume information after the entire run
398
+ condition : always()
0 commit comments