Hello GitHub
This commit is contained in:
44
build/pipelines/azure-pipelines.ci.yaml
Normal file
44
build/pipelines/azure-pipelines.ci.yaml
Normal file
@@ -0,0 +1,44 @@
|
||||
#
|
||||
# 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.
|
||||
#
|
||||
|
||||
trigger:
|
||||
- master
|
||||
- servicing/*
|
||||
pr:
|
||||
- master
|
||||
- servicing/*
|
||||
|
||||
name: 0.$(Date:yyMM).$(Date:dd)$(Rev:rr).0
|
||||
|
||||
jobs:
|
||||
- template: ./templates/build-app-public.yaml
|
||||
parameters:
|
||||
platform: x64
|
||||
|
||||
- template: ./templates/build-app-public.yaml
|
||||
parameters:
|
||||
platform: x86
|
||||
condition: not(eq(variables['Build.Reason'], 'PullRequest'))
|
||||
|
||||
- template: ./templates/build-app-public.yaml
|
||||
parameters:
|
||||
platform: ARM
|
||||
condition: not(eq(variables['Build.Reason'], 'PullRequest'))
|
||||
|
||||
- template: ./templates/build-app-public.yaml
|
||||
parameters:
|
||||
platform: ARM64
|
||||
condition: not(eq(variables['Build.Reason'], 'PullRequest'))
|
||||
|
||||
- template: ./templates/run-unit-tests.yaml
|
||||
parameters:
|
||||
platform: x64
|
||||
|
||||
- template: ./templates/run-unit-tests.yaml
|
||||
parameters:
|
||||
platform: x86
|
||||
|
||||
- template: ./templates/package-appxbundle.yaml
|
Reference in New Issue
Block a user