2019-09-05 00:26:26 +08:00
|
|
|
parameters:
|
|
|
|
configuration: 'Release'
|
|
|
|
platform: ''
|
2020-12-12 04:45:52 +08:00
|
|
|
additionalBuildArguments: '-m'
|
2019-09-05 00:26:26 +08:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
- job: Build${{ parameters.platform }}${{ parameters.configuration }}
|
|
|
|
displayName: Build ${{ parameters.platform }} ${{ parameters.configuration }}
|
|
|
|
variables:
|
|
|
|
BuildConfiguration: ${{ parameters.configuration }}
|
|
|
|
BuildPlatform: ${{ parameters.platform }}
|
2020-12-12 04:45:52 +08:00
|
|
|
pool: "windevbuildagents"
|
2020-09-09 01:24:33 +08:00
|
|
|
timeoutInMinutes: 120
|
|
|
|
strategy:
|
|
|
|
maxParallel: 10
|
2019-09-05 00:26:26 +08:00
|
|
|
steps:
|
|
|
|
- template: build-powertoys-steps.yml
|
|
|
|
parameters:
|
2020-08-14 04:51:01 +08:00
|
|
|
additionalBuildArguments: ${{ parameters.additionalBuildArguments }}
|