mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-13 02:39:22 +08:00
21 lines
588 B
YAML
21 lines
588 B
YAML
|
parameters:
|
||
|
configuration: 'Release'
|
||
|
platform: ''
|
||
|
additionalBuildArguments: '-m'
|
||
|
|
||
|
jobs:
|
||
|
- job: Build${{ parameters.platform }}${{ parameters.configuration }}
|
||
|
displayName: Build ${{ parameters.platform }} ${{ parameters.configuration }}
|
||
|
variables:
|
||
|
BuildConfiguration: ${{ parameters.configuration }}
|
||
|
BuildPlatform: ${{ parameters.platform }}
|
||
|
pool:
|
||
|
name: WinDevPool-L
|
||
|
timeoutInMinutes: 120
|
||
|
strategy:
|
||
|
maxParallel: 10
|
||
|
steps:
|
||
|
- template: build-powertoys-steps.yml
|
||
|
parameters:
|
||
|
additionalBuildArguments: ${{ parameters.additionalBuildArguments }}
|