calculator/build/pipelines/templates/build-app-public.yaml

21 lines
563 B
YAML
Raw Normal View History

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:
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