mirror of
https://github.com/microsoft/calculator.git
synced 2025-03-12 04:35:52 -07:00
* onboard 1ES PT * revert the todo item * resolve comments * add back the nuget security analysis for OSSBuild
76 lines
2.1 KiB
YAML
76 lines
2.1 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:
|
|
- main
|
|
- release/*
|
|
- feature/*
|
|
pr: none
|
|
|
|
name: 0.$(Date:yyMM).$(DayOfMonth)$(Rev:rr).0
|
|
|
|
resources:
|
|
repositories:
|
|
- repository: 1esPipelines
|
|
type: git
|
|
name: 1ESPipelineTemplates/1ESPipelineTemplates
|
|
ref: refs/tags/release
|
|
|
|
extends:
|
|
template: v1/1ES.Unofficial.PipelineTemplate.yml@1esPipelines
|
|
parameters:
|
|
pool:
|
|
name: EssentialExperiences-windows-2022
|
|
image: MMSWindows2022-Secure
|
|
os: windows
|
|
|
|
stages:
|
|
- stage:
|
|
jobs:
|
|
- template: /build/pipelines/templates/build-single-architecture.yaml@self
|
|
parameters:
|
|
isReleaseBuild: true
|
|
useReleaseAppxManifest: false
|
|
platform: x64
|
|
|
|
- template: /build/pipelines/templates/build-single-architecture.yaml@self
|
|
parameters:
|
|
isReleaseBuild: true
|
|
useReleaseAppxManifest: false
|
|
platform: x86
|
|
|
|
- template: /build/pipelines/templates/build-single-architecture.yaml@self
|
|
parameters:
|
|
isReleaseBuild: true
|
|
useReleaseAppxManifest: false
|
|
platform: ARM
|
|
|
|
- template: /build/pipelines/templates/build-single-architecture.yaml@self
|
|
parameters:
|
|
isReleaseBuild: true
|
|
useReleaseAppxManifest: false
|
|
platform: ARM64
|
|
|
|
- template: /build/pipelines/templates/run-ui-tests.yaml@self
|
|
parameters:
|
|
platform: x64
|
|
runsettingsFileName: CalculatorUITests.ci-internal.runsettings
|
|
|
|
- template: /build/pipelines/templates/run-ui-tests.yaml@self
|
|
parameters:
|
|
platform: x86
|
|
runsettingsFileName: CalculatorUITests.ci-internal.runsettings
|
|
|
|
- template: /build/pipelines/templates/run-unit-tests.yaml@self
|
|
parameters:
|
|
platform: x64
|
|
|
|
- template: /build/pipelines/templates/run-unit-tests.yaml@self
|
|
parameters:
|
|
platform: x86
|
|
|
|
- template: /build/pipelines/templates/package-msixbundle.yaml@self
|