2019-01-29 08:24:37 +08:00
|
|
|
#
|
|
|
|
# Release
|
|
|
|
# This pipeline builds a version of the app in a production configuration to be released to the
|
|
|
|
# Store and the Windows image. This pipeline relies on Microsoft-internal resources to run.
|
|
|
|
#
|
|
|
|
|
|
|
|
trigger: none
|
|
|
|
pr: none
|
|
|
|
|
|
|
|
variables:
|
|
|
|
versionMajor: 10
|
2019-06-05 05:12:30 +08:00
|
|
|
versionMinor: 1906
|
|
|
|
versionBuild: $[counter('10.1906.*', 0)]
|
2019-01-29 08:24:37 +08:00
|
|
|
versionPatch: 0
|
|
|
|
|
|
|
|
name: '$(versionMajor).$(versionMinor).$(versionBuild).$(versionPatch)'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
- template: ./templates/build-app-internal.yaml
|
|
|
|
parameters:
|
|
|
|
platform: x64
|
|
|
|
|
|
|
|
- template: ./templates/build-app-internal.yaml
|
|
|
|
parameters:
|
|
|
|
platform: x86
|
|
|
|
condition: not(eq(variables['Build.Reason'], 'PullRequest'))
|
|
|
|
|
|
|
|
- template: ./templates/build-app-internal.yaml
|
|
|
|
parameters:
|
|
|
|
platform: ARM
|
|
|
|
condition: not(eq(variables['Build.Reason'], 'PullRequest'))
|
|
|
|
|
|
|
|
- template: ./templates/build-app-internal.yaml
|
|
|
|
parameters:
|
|
|
|
platform: ARM64
|
|
|
|
condition: not(eq(variables['Build.Reason'], 'PullRequest'))
|
|
|
|
|
|
|
|
- template: ./templates/run-unit-tests.yaml
|
|
|
|
parameters:
|
|
|
|
platform: x64
|
2019-03-05 23:06:06 +08:00
|
|
|
reimageServiceConnection: macool-sandbox-interactiveDesktopRS5
|
|
|
|
reimageSubscriptionId: 012a8008-c00f-45b3-9828-41ebba30141d
|
|
|
|
reimageResourceGroup: interactiveDesktopRS5
|
2019-01-29 08:24:37 +08:00
|
|
|
|
|
|
|
- template: ./templates/run-unit-tests.yaml
|
|
|
|
parameters:
|
|
|
|
platform: x86
|
2019-03-05 23:06:06 +08:00
|
|
|
reimageServiceConnection: macool-sandbox-interactiveDesktopRS5
|
|
|
|
reimageSubscriptionId: 012a8008-c00f-45b3-9828-41ebba30141d
|
|
|
|
reimageResourceGroup: interactiveDesktopRS5
|
2019-01-29 08:24:37 +08:00
|
|
|
|
|
|
|
- template: ./templates/package-appxbundle.yaml
|
|
|
|
|
|
|
|
- template: ./templates/prepare-release-internalonly.yaml
|