calculator/build/pipelines/templates/build-app-public.yaml
2020-10-28 14:41:13 -07:00

21 lines
563 B
YAML

# 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
variables:
BuildConfiguration: Release
BuildPlatform: ${{ parameters.platform }}
steps:
- checkout: self
fetchDepth: 1
- template: ./build-single-architecture.yaml