* Pipeline update * moving download internals up in order * updated internal download step and removed duplicate isPublicRelease parameter
55 lines
1.3 KiB
YAML
55 lines
1.3 KiB
YAML
#
|
|
# Continuous Integration (CI) - Internal
|
|
# This pipeline builds and validate the app for all supported architectures, in a production
|
|
# configuration. This pipeline relies on Microsoft-internal resources to run.
|
|
#
|
|
|
|
trigger:
|
|
- master
|
|
- release/*
|
|
- feature/*
|
|
pr: none
|
|
|
|
name: 0.$(Date:yyMM).$(DayOfMonth)$(Rev:rr).0
|
|
|
|
jobs:
|
|
- template: ./templates/build-single-architecture.yaml
|
|
parameters:
|
|
isReleaseBuild: true
|
|
useTestVersionOfInternalsPackage: true
|
|
platform: x64
|
|
|
|
- template: ./templates/build-single-architecture.yaml
|
|
parameters:
|
|
isReleaseBuild: true
|
|
useTestVersionOfInternalsPackage: true
|
|
platform: x86
|
|
|
|
- template: ./templates/build-single-architecture.yaml
|
|
parameters:
|
|
isReleaseBuild: true
|
|
useTestVersionOfInternalsPackage: true
|
|
platform: ARM
|
|
|
|
- template: ./templates/run-ui-tests.yaml
|
|
parameters:
|
|
platform: x64
|
|
runsettingsFileName: CalculatorUITests.release.runsettings
|
|
|
|
- template: ./templates/run-ui-tests.yaml
|
|
parameters:
|
|
platform: x86
|
|
runsettingsFileName: CalculatorUITests.release.runsettings
|
|
|
|
- template: ./templates/run-unit-tests.yaml
|
|
parameters:
|
|
platform: x64
|
|
|
|
- template: ./templates/run-unit-tests.yaml
|
|
parameters:
|
|
platform: x86
|
|
|
|
- template: ./templates/package-appxbundle.yaml
|
|
parameters:
|
|
useTestVersionOfInternalsPackage: true
|