Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add internal CI pipeline #1553

Merged
merged 2 commits into from
Jun 1, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 41 additions & 0 deletions build/pipelines/azure-pipelines.ci-internal.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
#
# 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/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
4 changes: 2 additions & 2 deletions build/pipelines/azure-pipelines.ci.yaml
Original file line number Diff line number Diff line change
@@ -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:
Expand Down