Improving CI build times with new build agent (#8516)

This commit is contained in:
Clint Rutkas
2020-12-11 12:45:52 -08:00
committed by GitHub
parent cd8be91f4a
commit f113bc8a77
6 changed files with 347 additions and 2 deletions

View File

@@ -0,0 +1,15 @@
parameters:
sdkVersion: 17134
steps:
- task: powershell@2
inputs:
targetType: filePath
filePath: .\.pipelines\restore-dependencies.ps1
displayName: 'Install VS dependencies'
- task: powershell@2
inputs:
targetType: filePath
filePath: .\.pipelines\restore-windowsSdk17134.ps1
arguments: ${{ parameters.sdkVersion }}
displayName: 'Install Windows SDK 17134'