diff --git a/build/pipelines/azure-pipelines.ci-internal.yaml b/build/pipelines/azure-pipelines.ci-internal.yaml index 513c3d3e..049ea488 100644 --- a/build/pipelines/azure-pipelines.ci-internal.yaml +++ b/build/pipelines/azure-pipelines.ci-internal.yaml @@ -30,46 +30,46 @@ extends: stages: - stage: jobs: - - template: ./templates/build-single-architecture.yaml + - template: /build/pipelines/templates/build-single-architecture.yaml@self parameters: isReleaseBuild: true useReleaseAppxManifest: false platform: x64 - - template: ./templates/build-single-architecture.yaml + - template: /build/pipelines/templates/build-single-architecture.yaml@self parameters: isReleaseBuild: true useReleaseAppxManifest: false platform: x86 - - template: ./templates/build-single-architecture.yaml + - template: /build/pipelines/templates/build-single-architecture.yaml@self parameters: isReleaseBuild: true useReleaseAppxManifest: false platform: ARM - - template: ./templates/build-single-architecture.yaml + - template: /build/pipelines/templates/build-single-architecture.yaml@self parameters: isReleaseBuild: true useReleaseAppxManifest: false platform: ARM64 - - template: ./templates/run-ui-tests.yaml + - template: /build/pipelines/templates/run-ui-tests.yaml@self parameters: platform: x64 runsettingsFileName: CalculatorUITests.ci-internal.runsettings - - template: ./templates/run-ui-tests.yaml + - template: /build/pipelines/templates/run-ui-tests.yaml@self parameters: platform: x86 runsettingsFileName: CalculatorUITests.ci-internal.runsettings - - template: ./templates/run-unit-tests.yaml + - template: /build/pipelines/templates/run-unit-tests.yaml@self parameters: platform: x64 - - template: ./templates/run-unit-tests.yaml + - template: /build/pipelines/templates/run-unit-tests.yaml@self parameters: platform: x86 - - template: ./templates/package-msixbundle.yaml + - template: /build/pipelines/templates/package-msixbundle.yaml@self diff --git a/build/pipelines/azure-pipelines.ci.yaml b/build/pipelines/azure-pipelines.ci.yaml index b3f54f85..d5df819d 100644 --- a/build/pipelines/azure-pipelines.ci.yaml +++ b/build/pipelines/azure-pipelines.ci.yaml @@ -33,41 +33,41 @@ extends: stages: - stage: Calculator jobs: - - template: ./templates/build-single-architecture.yaml + - template: /build/pipelines/templates/build-single-architecture.yaml@self parameters: platform: x64 - - template: ./templates/build-single-architecture.yaml + - template: /build/pipelines/templates/build-single-architecture.yaml@self parameters: platform: x86 condition: not(eq(variables['Build.Reason'], 'PullRequest')) - - template: ./templates/build-single-architecture.yaml + - template: /build/pipelines/templates/build-single-architecture.yaml@self parameters: platform: ARM isOSSBuild: true condition: not(eq(variables['Build.Reason'], 'PullRequest')) - - template: ./templates/build-single-architecture.yaml + - template: /build/pipelines/templates/build-single-architecture.yaml@self parameters: platform: ARM64 isOSSBuild: true condition: not(eq(variables['Build.Reason'], 'PullRequest')) - - template: ./templates/run-ui-tests.yaml + - template: /build/pipelines/templates/run-ui-tests.yaml@self parameters: platform: x64 isOSSBuild: true runsettingsFileName: CalculatorUITests.ci.runsettings - - template: ./templates/run-unit-tests.yaml + - template: /build/pipelines/templates/run-unit-tests.yaml@self parameters: platform: x64 - - template: ./templates/run-unit-tests.yaml + - template: /build/pipelines/templates/run-unit-tests.yaml@self parameters: platform: x86 - - template: ./templates/package-msixbundle.yaml + - template: /build/pipelines/templates/package-msixbundle.yaml@self parameters: isOSSBuild: true diff --git a/build/pipelines/azure-pipelines.release.yaml b/build/pipelines/azure-pipelines.release.yaml index 6f4c5b3b..aabe900e 100644 --- a/build/pipelines/azure-pipelines.release.yaml +++ b/build/pipelines/azure-pipelines.release.yaml @@ -33,55 +33,55 @@ extends: stages: - stage: Calculator jobs: - - template: ./templates/build-single-architecture.yaml + - template: /build/pipelines/templates/build-single-architecture.yaml@self parameters: platform: x64 isReleaseBuild: true useReleaseAppxmanifest: true - - template: ./templates/build-single-architecture.yaml + - template: /build/pipelines/templates/build-single-architecture.yaml@self parameters: platform: x86 isReleaseBuild: true useReleaseAppxmanifest: true condition: not(eq(variables['Build.Reason'], 'PullRequest')) - - template: ./templates/build-single-architecture.yaml + - template: /build/pipelines/templates/build-single-architecture.yaml@self parameters: platform: ARM isReleaseBuild: true useReleaseAppxmanifest: true condition: not(eq(variables['Build.Reason'], 'PullRequest')) - - template: ./templates/build-single-architecture.yaml + - template: /build/pipelines/templates/build-single-architecture.yaml@self parameters: platform: ARM64 isReleaseBuild: true useReleaseAppxmanifest: true condition: not(eq(variables['Build.Reason'], 'PullRequest')) - - template: ./templates/run-ui-tests.yaml + - template: /build/pipelines/templates/run-ui-tests.yaml@self parameters: platform: x64 runsettingsFileName: CalculatorUITests.release.runsettings - - template: ./templates/run-ui-tests.yaml + - template: /build/pipelines/templates/run-ui-tests.yaml@self parameters: platform: x86 runsettingsFileName: CalculatorUITests.release.runsettings - - template: ./templates/run-unit-tests.yaml + - template: /build/pipelines/templates/run-unit-tests.yaml@self parameters: platform: x64 - - template: ./templates/run-unit-tests.yaml + - template: /build/pipelines/templates/run-unit-tests.yaml@self parameters: platform: x86 - - template: ./templates/package-msixbundle.yaml + - template: /build/pipelines/templates/package-msixbundle.yaml@self parameters: signBundle: true createStoreBrokerPackages: true - - template: ./templates/release-store.yaml - - template: ./templates/release-vpack.yaml + - template: /build/pipelines/templates/release-store.yaml@self + - template: /build/pipelines/templates/release-vpack.yaml@self