mirror of
https://github.com/Microsoft/calculator.git
synced 2025-08-20 21:33:10 -07:00
correct template path
This commit is contained in:
parent
569340ee6b
commit
2f9cf0edd6
3 changed files with 28 additions and 28 deletions
|
@ -30,46 +30,46 @@ extends:
|
||||||
stages:
|
stages:
|
||||||
- stage:
|
- stage:
|
||||||
jobs:
|
jobs:
|
||||||
- template: ./templates/build-single-architecture.yaml
|
- template: /build/pipelines/templates/build-single-architecture.yaml@self
|
||||||
parameters:
|
parameters:
|
||||||
isReleaseBuild: true
|
isReleaseBuild: true
|
||||||
useReleaseAppxManifest: false
|
useReleaseAppxManifest: false
|
||||||
platform: x64
|
platform: x64
|
||||||
|
|
||||||
- template: ./templates/build-single-architecture.yaml
|
- template: /build/pipelines/templates/build-single-architecture.yaml@self
|
||||||
parameters:
|
parameters:
|
||||||
isReleaseBuild: true
|
isReleaseBuild: true
|
||||||
useReleaseAppxManifest: false
|
useReleaseAppxManifest: false
|
||||||
platform: x86
|
platform: x86
|
||||||
|
|
||||||
- template: ./templates/build-single-architecture.yaml
|
- template: /build/pipelines/templates/build-single-architecture.yaml@self
|
||||||
parameters:
|
parameters:
|
||||||
isReleaseBuild: true
|
isReleaseBuild: true
|
||||||
useReleaseAppxManifest: false
|
useReleaseAppxManifest: false
|
||||||
platform: ARM
|
platform: ARM
|
||||||
|
|
||||||
- template: ./templates/build-single-architecture.yaml
|
- template: /build/pipelines/templates/build-single-architecture.yaml@self
|
||||||
parameters:
|
parameters:
|
||||||
isReleaseBuild: true
|
isReleaseBuild: true
|
||||||
useReleaseAppxManifest: false
|
useReleaseAppxManifest: false
|
||||||
platform: ARM64
|
platform: ARM64
|
||||||
|
|
||||||
- template: ./templates/run-ui-tests.yaml
|
- template: /build/pipelines/templates/run-ui-tests.yaml@self
|
||||||
parameters:
|
parameters:
|
||||||
platform: x64
|
platform: x64
|
||||||
runsettingsFileName: CalculatorUITests.ci-internal.runsettings
|
runsettingsFileName: CalculatorUITests.ci-internal.runsettings
|
||||||
|
|
||||||
- template: ./templates/run-ui-tests.yaml
|
- template: /build/pipelines/templates/run-ui-tests.yaml@self
|
||||||
parameters:
|
parameters:
|
||||||
platform: x86
|
platform: x86
|
||||||
runsettingsFileName: CalculatorUITests.ci-internal.runsettings
|
runsettingsFileName: CalculatorUITests.ci-internal.runsettings
|
||||||
|
|
||||||
- template: ./templates/run-unit-tests.yaml
|
- template: /build/pipelines/templates/run-unit-tests.yaml@self
|
||||||
parameters:
|
parameters:
|
||||||
platform: x64
|
platform: x64
|
||||||
|
|
||||||
- template: ./templates/run-unit-tests.yaml
|
- template: /build/pipelines/templates/run-unit-tests.yaml@self
|
||||||
parameters:
|
parameters:
|
||||||
platform: x86
|
platform: x86
|
||||||
|
|
||||||
- template: ./templates/package-msixbundle.yaml
|
- template: /build/pipelines/templates/package-msixbundle.yaml@self
|
||||||
|
|
|
@ -33,41 +33,41 @@ extends:
|
||||||
stages:
|
stages:
|
||||||
- stage: Calculator
|
- stage: Calculator
|
||||||
jobs:
|
jobs:
|
||||||
- template: ./templates/build-single-architecture.yaml
|
- template: /build/pipelines/templates/build-single-architecture.yaml@self
|
||||||
parameters:
|
parameters:
|
||||||
platform: x64
|
platform: x64
|
||||||
|
|
||||||
- template: ./templates/build-single-architecture.yaml
|
- template: /build/pipelines/templates/build-single-architecture.yaml@self
|
||||||
parameters:
|
parameters:
|
||||||
platform: x86
|
platform: x86
|
||||||
condition: not(eq(variables['Build.Reason'], 'PullRequest'))
|
condition: not(eq(variables['Build.Reason'], 'PullRequest'))
|
||||||
|
|
||||||
- template: ./templates/build-single-architecture.yaml
|
- template: /build/pipelines/templates/build-single-architecture.yaml@self
|
||||||
parameters:
|
parameters:
|
||||||
platform: ARM
|
platform: ARM
|
||||||
isOSSBuild: true
|
isOSSBuild: true
|
||||||
condition: not(eq(variables['Build.Reason'], 'PullRequest'))
|
condition: not(eq(variables['Build.Reason'], 'PullRequest'))
|
||||||
|
|
||||||
- template: ./templates/build-single-architecture.yaml
|
- template: /build/pipelines/templates/build-single-architecture.yaml@self
|
||||||
parameters:
|
parameters:
|
||||||
platform: ARM64
|
platform: ARM64
|
||||||
isOSSBuild: true
|
isOSSBuild: true
|
||||||
condition: not(eq(variables['Build.Reason'], 'PullRequest'))
|
condition: not(eq(variables['Build.Reason'], 'PullRequest'))
|
||||||
|
|
||||||
- template: ./templates/run-ui-tests.yaml
|
- template: /build/pipelines/templates/run-ui-tests.yaml@self
|
||||||
parameters:
|
parameters:
|
||||||
platform: x64
|
platform: x64
|
||||||
isOSSBuild: true
|
isOSSBuild: true
|
||||||
runsettingsFileName: CalculatorUITests.ci.runsettings
|
runsettingsFileName: CalculatorUITests.ci.runsettings
|
||||||
|
|
||||||
- template: ./templates/run-unit-tests.yaml
|
- template: /build/pipelines/templates/run-unit-tests.yaml@self
|
||||||
parameters:
|
parameters:
|
||||||
platform: x64
|
platform: x64
|
||||||
|
|
||||||
- template: ./templates/run-unit-tests.yaml
|
- template: /build/pipelines/templates/run-unit-tests.yaml@self
|
||||||
parameters:
|
parameters:
|
||||||
platform: x86
|
platform: x86
|
||||||
|
|
||||||
- template: ./templates/package-msixbundle.yaml
|
- template: /build/pipelines/templates/package-msixbundle.yaml@self
|
||||||
parameters:
|
parameters:
|
||||||
isOSSBuild: true
|
isOSSBuild: true
|
||||||
|
|
|
@ -33,55 +33,55 @@ extends:
|
||||||
stages:
|
stages:
|
||||||
- stage: Calculator
|
- stage: Calculator
|
||||||
jobs:
|
jobs:
|
||||||
- template: ./templates/build-single-architecture.yaml
|
- template: /build/pipelines/templates/build-single-architecture.yaml@self
|
||||||
parameters:
|
parameters:
|
||||||
platform: x64
|
platform: x64
|
||||||
isReleaseBuild: true
|
isReleaseBuild: true
|
||||||
useReleaseAppxmanifest: true
|
useReleaseAppxmanifest: true
|
||||||
|
|
||||||
- template: ./templates/build-single-architecture.yaml
|
- template: /build/pipelines/templates/build-single-architecture.yaml@self
|
||||||
parameters:
|
parameters:
|
||||||
platform: x86
|
platform: x86
|
||||||
isReleaseBuild: true
|
isReleaseBuild: true
|
||||||
useReleaseAppxmanifest: true
|
useReleaseAppxmanifest: true
|
||||||
condition: not(eq(variables['Build.Reason'], 'PullRequest'))
|
condition: not(eq(variables['Build.Reason'], 'PullRequest'))
|
||||||
|
|
||||||
- template: ./templates/build-single-architecture.yaml
|
- template: /build/pipelines/templates/build-single-architecture.yaml@self
|
||||||
parameters:
|
parameters:
|
||||||
platform: ARM
|
platform: ARM
|
||||||
isReleaseBuild: true
|
isReleaseBuild: true
|
||||||
useReleaseAppxmanifest: true
|
useReleaseAppxmanifest: true
|
||||||
condition: not(eq(variables['Build.Reason'], 'PullRequest'))
|
condition: not(eq(variables['Build.Reason'], 'PullRequest'))
|
||||||
|
|
||||||
- template: ./templates/build-single-architecture.yaml
|
- template: /build/pipelines/templates/build-single-architecture.yaml@self
|
||||||
parameters:
|
parameters:
|
||||||
platform: ARM64
|
platform: ARM64
|
||||||
isReleaseBuild: true
|
isReleaseBuild: true
|
||||||
useReleaseAppxmanifest: true
|
useReleaseAppxmanifest: true
|
||||||
condition: not(eq(variables['Build.Reason'], 'PullRequest'))
|
condition: not(eq(variables['Build.Reason'], 'PullRequest'))
|
||||||
|
|
||||||
- template: ./templates/run-ui-tests.yaml
|
- template: /build/pipelines/templates/run-ui-tests.yaml@self
|
||||||
parameters:
|
parameters:
|
||||||
platform: x64
|
platform: x64
|
||||||
runsettingsFileName: CalculatorUITests.release.runsettings
|
runsettingsFileName: CalculatorUITests.release.runsettings
|
||||||
|
|
||||||
- template: ./templates/run-ui-tests.yaml
|
- template: /build/pipelines/templates/run-ui-tests.yaml@self
|
||||||
parameters:
|
parameters:
|
||||||
platform: x86
|
platform: x86
|
||||||
runsettingsFileName: CalculatorUITests.release.runsettings
|
runsettingsFileName: CalculatorUITests.release.runsettings
|
||||||
|
|
||||||
- template: ./templates/run-unit-tests.yaml
|
- template: /build/pipelines/templates/run-unit-tests.yaml@self
|
||||||
parameters:
|
parameters:
|
||||||
platform: x64
|
platform: x64
|
||||||
|
|
||||||
- template: ./templates/run-unit-tests.yaml
|
- template: /build/pipelines/templates/run-unit-tests.yaml@self
|
||||||
parameters:
|
parameters:
|
||||||
platform: x86
|
platform: x86
|
||||||
|
|
||||||
- template: ./templates/package-msixbundle.yaml
|
- template: /build/pipelines/templates/package-msixbundle.yaml@self
|
||||||
parameters:
|
parameters:
|
||||||
signBundle: true
|
signBundle: true
|
||||||
createStoreBrokerPackages: true
|
createStoreBrokerPackages: true
|
||||||
|
|
||||||
- template: ./templates/release-store.yaml
|
- template: /build/pipelines/templates/release-store.yaml@self
|
||||||
- template: ./templates/release-vpack.yaml
|
- template: /build/pipelines/templates/release-vpack.yaml@self
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue