2019-01-29 08:24:37 +08:00
|
|
|
# This template contains a job to build the app for a single architecture.
|
|
|
|
# Only the contents of the public repository are built; internal resources are not used.
|
|
|
|
|
|
|
|
parameters:
|
|
|
|
platform: ''
|
|
|
|
condition: ''
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
- job: Build${{ parameters.platform }}
|
|
|
|
displayName: Build ${{ parameters.platform }}
|
|
|
|
condition: ${{ parameters.condition }}
|
|
|
|
pool:
|
2019-06-25 07:38:45 +08:00
|
|
|
vmImage: windows-2019
|
2019-01-29 08:24:37 +08:00
|
|
|
variables:
|
|
|
|
BuildConfiguration: Release
|
|
|
|
BuildPlatform: ${{ parameters.platform }}
|
|
|
|
steps:
|
|
|
|
- checkout: self
|
2020-10-29 05:41:13 +08:00
|
|
|
fetchDepth: 1
|
2019-01-29 08:24:37 +08:00
|
|
|
|
|
|
|
- template: ./build-single-architecture.yaml
|