* Move build jobs to the Hosted VS2017 pool instead of our internal pool * Move the prepare-release-internalonly job from a team-specific pool to a shared pool with more capacity * Remove symbol publishing from PR/CI builds since it's not necessary; do it only in release builds
23 lines
595 B
YAML
23 lines
595 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: vs2017-win2016
|
|
variables:
|
|
BuildConfiguration: Release
|
|
BuildPlatform: ${{ parameters.platform }}
|
|
workspace:
|
|
clean: outputs
|
|
steps:
|
|
- checkout: self
|
|
clean: true
|
|
|
|
- template: ./build-single-architecture.yaml |