mirror of
https://github.com/Microsoft/calculator.git
synced 2025-08-21 05:43:10 -07:00
Add CI-internal pipeline
This commit is contained in:
parent
527cf45aba
commit
49f288316b
2 changed files with 47 additions and 2 deletions
45
build/pipelines/azure-pipelines.ci-internal.yaml
Normal file
45
build/pipelines/azure-pipelines.ci-internal.yaml
Normal file
|
@ -0,0 +1,45 @@
|
|||
#
|
||||
# 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-app-internal.yaml
|
||||
parameters:
|
||||
platform: x64
|
||||
|
||||
- template: ./templates/build-app-internal.yaml
|
||||
parameters:
|
||||
platform: x86
|
||||
|
||||
- template: ./templates/build-app-internal.yaml
|
||||
parameters:
|
||||
platform: ARM
|
||||
|
||||
- template: ./templates/build-app-internal.yaml
|
||||
parameters:
|
||||
platform: ARM64
|
||||
|
||||
- template: ./templates/run-ui-tests.yaml
|
||||
parameters:
|
||||
platform: x64
|
||||
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
|
|
@ -1,7 +1,7 @@
|
|||
#
|
||||
# Continuous Integration (CI)
|
||||
# This pipeline builds and validate the app in all supported configurations. If the build was
|
||||
# queued to validate a pull request, we build and test only x64.
|
||||
# This pipeline builds and validate the app for all supported architecutres, in a public
|
||||
# configuration. If the build was queued to validate a pull request, we build and test only x64.
|
||||
#
|
||||
|
||||
trigger:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue