mirror of
https://github.com/Microsoft/calculator.git
synced 2025-08-22 14:13:30 -07:00
Bump internal package build number
This commit is contained in:
parent
66c2f5915e
commit
374e6c3bae
4 changed files with 17 additions and 19 deletions
|
@ -20,16 +20,24 @@ jobs:
|
||||||
- template: ./templates/build-app-internal.yaml
|
- template: ./templates/build-app-internal.yaml
|
||||||
parameters:
|
parameters:
|
||||||
platform: x86
|
platform: x86
|
||||||
|
condition: not(eq(variables['Build.Reason'], 'PullRequest'))
|
||||||
|
|
||||||
- template: ./templates/build-app-internal.yaml
|
- template: ./templates/build-app-internal.yaml
|
||||||
parameters:
|
parameters:
|
||||||
platform: ARM
|
platform: ARM
|
||||||
|
condition: not(eq(variables['Build.Reason'], 'PullRequest'))
|
||||||
|
|
||||||
- template: ./templates/run-ui-tests.yaml
|
- template: ./templates/run-ui-tests.yaml
|
||||||
parameters:
|
parameters:
|
||||||
platform: x64
|
platform: x64
|
||||||
runsettingsFileName: CalculatorUITests.release.runsettings
|
runsettingsFileName: CalculatorUITests.release.runsettings
|
||||||
|
|
||||||
|
- template: ./templates/run-ui-tests.yaml
|
||||||
|
parameters:
|
||||||
|
platform: x86
|
||||||
|
runsettingsFileName: CalculatorUITests.release.runsettings
|
||||||
|
condition: not(eq(variables['Build.Reason'], 'PullRequest'))
|
||||||
|
|
||||||
- template: ./templates/run-unit-tests.yaml
|
- template: ./templates/run-unit-tests.yaml
|
||||||
parameters:
|
parameters:
|
||||||
platform: x64
|
platform: x64
|
||||||
|
|
|
@ -4,13 +4,6 @@
|
||||||
# Store and the Windows image. This pipeline relies on Microsoft-internal resources to run.
|
# Store and the Windows image. This pipeline relies on Microsoft-internal resources to run.
|
||||||
#
|
#
|
||||||
|
|
||||||
schedules:
|
|
||||||
- cron: "0 7 * * *"
|
|
||||||
displayName: Daily midnight build
|
|
||||||
branches:
|
|
||||||
include:
|
|
||||||
- master
|
|
||||||
|
|
||||||
trigger: none
|
trigger: none
|
||||||
pr: none
|
pr: none
|
||||||
|
|
||||||
|
@ -26,27 +19,20 @@ jobs:
|
||||||
- template: ./templates/build-app-internal.yaml
|
- template: ./templates/build-app-internal.yaml
|
||||||
parameters:
|
parameters:
|
||||||
platform: x64
|
platform: x64
|
||||||
|
isPublicRelease: true
|
||||||
|
|
||||||
- template: ./templates/build-app-internal.yaml
|
- template: ./templates/build-app-internal.yaml
|
||||||
parameters:
|
parameters:
|
||||||
platform: x86
|
platform: x86
|
||||||
|
isPublicRelease: true
|
||||||
condition: not(eq(variables['Build.Reason'], 'PullRequest'))
|
condition: not(eq(variables['Build.Reason'], 'PullRequest'))
|
||||||
|
|
||||||
- template: ./templates/build-app-internal.yaml
|
- template: ./templates/build-app-internal.yaml
|
||||||
parameters:
|
parameters:
|
||||||
platform: ARM
|
platform: ARM
|
||||||
|
isPublicRelease: true
|
||||||
condition: not(eq(variables['Build.Reason'], 'PullRequest'))
|
condition: not(eq(variables['Build.Reason'], 'PullRequest'))
|
||||||
|
|
||||||
- template: ./templates/run-ui-tests.yaml
|
|
||||||
parameters:
|
|
||||||
platform: x64
|
|
||||||
runsettingsFileName: CalculatorUITests.release.runsettings
|
|
||||||
|
|
||||||
- template: ./templates/run-ui-tests.yaml
|
|
||||||
parameters:
|
|
||||||
platform: x86
|
|
||||||
runsettingsFileName: CalculatorUITests.release.runsettings
|
|
||||||
|
|
||||||
- template: ./templates/run-unit-tests.yaml
|
- template: ./templates/run-unit-tests.yaml
|
||||||
parameters:
|
parameters:
|
||||||
platform: x64
|
platform: x64
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
parameters:
|
parameters:
|
||||||
platform: ''
|
platform: ''
|
||||||
condition: ''
|
condition: ''
|
||||||
|
isPublicRelease: false
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
- job: Build${{ parameters.platform }}
|
- job: Build${{ parameters.platform }}
|
||||||
|
@ -27,7 +28,10 @@ jobs:
|
||||||
downloadDirectory: $(Build.SourcesDirectory)
|
downloadDirectory: $(Build.SourcesDirectory)
|
||||||
vstsFeed: WindowsInboxApps
|
vstsFeed: WindowsInboxApps
|
||||||
vstsFeedPackage: calculator-internals
|
vstsFeedPackage: calculator-internals
|
||||||
vstsPackageVersion: 0.0.65
|
${{ if eq(parameters.isPublicRelease, true) }}:
|
||||||
|
vstsPackageVersion: 0.0.66
|
||||||
|
${{ if eq(parameters.isPublicRelease, false) }}:
|
||||||
|
vstsPackageVersion: 0.0.65
|
||||||
|
|
||||||
- template: ./build-single-architecture.yaml
|
- template: ./build-single-architecture.yaml
|
||||||
parameters:
|
parameters:
|
||||||
|
|
|
@ -81,7 +81,7 @@ jobs:
|
||||||
downloadDirectory: $(Build.SourcesDirectory)
|
downloadDirectory: $(Build.SourcesDirectory)
|
||||||
vstsFeed: WindowsInboxApps
|
vstsFeed: WindowsInboxApps
|
||||||
vstsFeedPackage: calculator-internals
|
vstsFeedPackage: calculator-internals
|
||||||
vstsPackageVersion: 0.0.65
|
vstsPackageVersion: 0.0.66
|
||||||
|
|
||||||
- powershell: |
|
- powershell: |
|
||||||
# Just modify this line to indicate where your en-us PDP file is. Leave the other lines alone.
|
# Just modify this line to indicate where your en-us PDP file is. Leave the other lines alone.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue