2021-06-01 22:58:26 +08:00
|
|
|
#
|
|
|
|
# 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:
|
2021-08-26 23:47:10 +08:00
|
|
|
- template: ./templates/build-single-architecture.yaml
|
2021-06-01 22:58:26 +08:00
|
|
|
parameters:
|
2021-08-26 23:47:10 +08:00
|
|
|
isReleaseBuild: true
|
2021-09-08 23:40:05 +08:00
|
|
|
useReleaseAppxManifest: false
|
2021-06-01 22:58:26 +08:00
|
|
|
platform: x64
|
|
|
|
|
2021-08-26 23:47:10 +08:00
|
|
|
- template: ./templates/build-single-architecture.yaml
|
2021-06-01 22:58:26 +08:00
|
|
|
parameters:
|
2021-08-26 23:47:10 +08:00
|
|
|
isReleaseBuild: true
|
2021-09-08 23:40:05 +08:00
|
|
|
useReleaseAppxManifest: false
|
2021-06-01 22:58:26 +08:00
|
|
|
platform: x86
|
|
|
|
|
2021-08-26 23:47:10 +08:00
|
|
|
- template: ./templates/build-single-architecture.yaml
|
2021-06-01 22:58:26 +08:00
|
|
|
parameters:
|
2021-08-26 23:47:10 +08:00
|
|
|
isReleaseBuild: true
|
2021-09-08 23:40:05 +08:00
|
|
|
useReleaseAppxManifest: false
|
2021-06-01 22:58:26 +08:00
|
|
|
platform: ARM
|
|
|
|
|
|
|
|
- template: ./templates/run-ui-tests.yaml
|
|
|
|
parameters:
|
|
|
|
platform: x64
|
2021-09-17 06:10:57 +08:00
|
|
|
runsettingsFileName: CalculatorUITests.ci-internal.runsettings
|
2021-06-01 22:58:26 +08:00
|
|
|
|
2021-07-27 17:35:16 +08:00
|
|
|
- template: ./templates/run-ui-tests.yaml
|
|
|
|
parameters:
|
|
|
|
platform: x86
|
2021-09-17 06:10:57 +08:00
|
|
|
runsettingsFileName: CalculatorUITests.ci-internal.runsettings
|
2021-07-27 17:35:16 +08:00
|
|
|
|
2021-06-01 22:58:26 +08:00
|
|
|
- template: ./templates/run-unit-tests.yaml
|
|
|
|
parameters:
|
|
|
|
platform: x64
|
|
|
|
|
|
|
|
- template: ./templates/run-unit-tests.yaml
|
|
|
|
parameters:
|
|
|
|
platform: x86
|
|
|
|
|
2022-02-12 01:07:48 +08:00
|
|
|
- template: ./templates/package-msixbundle.yaml
|