-
Notifications
You must be signed in to change notification settings - Fork 8.3k
[release/v7.6.1] Separate Store Package Creation, Skip Polling for Store Publish, Clean up PDP-Media #27214
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[release/v7.6.1] Separate Store Package Creation, Skip Polling for Store Publish, Clean up PDP-Media #27214
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -45,7 +45,7 @@ resources: | |
| ref: refs/heads/main | ||
|
|
||
| variables: | ||
| - template: ../templates/variables/PowerShell-Coordinated_Packages-Variables.yml | ||
| - template: ./pipelines/templates/variables/PowerShell-Coordinated_Packages-Variables.yml@self | ||
| parameters: | ||
| InternalSDKBlobURL: ${{ parameters.InternalSDKBlobURL }} | ||
| ReleaseTagVar: ${{ parameters.ReleaseTagVar }} | ||
|
|
@@ -90,7 +90,7 @@ extends: | |
| tsaOptionsFile: .config\tsaoptions.json | ||
|
|
||
| stages: | ||
| - template: ../templates/stages/PowerShell-Coordinated_Packages-Stages.yml | ||
| - template: ./pipelines/templates/stages/PowerShell-Coordinated_Packages-Stages.yml@self | ||
| parameters: | ||
| RUN_WINDOWS: ${{ parameters.RUN_WINDOWS }} | ||
|
Comment on lines
92
to
95
|
||
| RUN_TEST_AND_RELEASE: ${{ parameters.RUN_TEST_AND_RELEASE }} | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -31,7 +31,7 @@ parameters: # parameters are shown up in ADO UI in a build queue time | |
| name: pkgs-$(BUILD.SOURCEBRANCHNAME)-nonofficial-$(Build.BuildId) | ||
|
|
||
| variables: | ||
| - template: ../templates/variables/PowerShell-Packages-Variables.yml | ||
| - template: ./pipelines/templates/variables/PowerShell-Packages-Variables.yml@self | ||
| parameters: | ||
| debug: ${{ parameters.debug }} | ||
|
Comment on lines
33
to
36
|
||
| ForceAzureBlobDelete: ${{ parameters.ForceAzureBlobDelete }} | ||
|
|
@@ -92,6 +92,6 @@ extends: | |
| enabled: false | ||
| tsaOptionsFile: .config\tsaoptions.json | ||
| stages: | ||
| - template: ../templates/stages/PowerShell-Packages-Stages.yml | ||
| - template: ./pipelines/templates/stages/PowerShell-Packages-Stages.yml@self | ||
| parameters: | ||
| OfficialBuild: false | ||
|
Comment on lines
94
to
97
|
||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -17,7 +17,7 @@ parameters: # parameters are shown up in ADO UI in a build queue time | |||||
| name: ev2-$(BUILD.SOURCEBRANCHNAME)-nonofficial-$(Build.BuildId) | ||||||
|
|
||||||
| variables: | ||||||
| - template: ../templates/variables/PowerShell-Release-Azure-Variables.yml | ||||||
| - template: ./pipelines/templates/variables/PowerShell-Release-Azure-Variables.yml@self | ||||||
|
||||||
| - template: ./pipelines/templates/variables/PowerShell-Release-Azure-Variables.yml@self | |
| - template: /.pipelines/templates/variables/PowerShell-Release-Azure-Variables.yml@self |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -33,7 +33,7 @@ parameters: # parameters are shown up in ADO UI in a build queue time | |
| name: release-$(BUILD.SOURCEBRANCHNAME)-nonofficial-$(Build.BuildId) | ||
|
|
||
| variables: | ||
| - template: ../templates/variables/PowerShell-Release-Variables.yml | ||
| - template: ./pipelines/templates/variables/PowerShell-Release-Variables.yml@self | ||
| parameters: | ||
| debug: ${{ parameters.debug }} | ||
|
Comment on lines
35
to
38
|
||
| ReleaseTagVar: ${{ parameters.ReleaseTagVar }} | ||
|
|
@@ -98,7 +98,7 @@ extends: | |
| tsaOptionsFile: .config\tsaoptions.json | ||
|
|
||
| stages: | ||
| - template: ../templates/stages/PowerShell-Release-Stages.yml | ||
| - template: ./pipelines/templates/stages/PowerShell-Release-Stages.yml@self | ||
| parameters: | ||
| releaseEnvironment: Test | ||
|
Comment on lines
100
to
103
|
||
| SkipPublish: ${{ parameters.SkipPublish }} | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -33,7 +33,7 @@ parameters: # parameters are shown up in ADO UI in a build queue time | |
| name: vPack_$(Build.SourceBranchName)_NonOfficial_Create.${{ parameters.createVPack }}_Name.${{ parameters.vPackName}}_$(date:yyyyMMdd).$(rev:rr) | ||
|
|
||
| variables: | ||
| - template: ../templates/variables/PowerShell-vPack-Variables.yml | ||
| - template: ./pipelines/templates/variables/PowerShell-vPack-Variables.yml@self | ||
| parameters: | ||
| debug: ${{ parameters.debug }} | ||
|
Comment on lines
35
to
38
|
||
| ReleaseTagVar: ${{ parameters.ReleaseTagVar }} | ||
|
|
@@ -82,7 +82,7 @@ extends: | |
| enabled: false | ||
| tsaOptionsFile: .config/tsaoptions.json | ||
| stages: | ||
| - template: ../templates/stages/PowerShell-vPack-Stages.yml | ||
| - template: ./pipelines/templates/stages/PowerShell-vPack-Stages.yml@self | ||
| parameters: | ||
|
Comment on lines
83
to
86
|
||
| createVPack: ${{ parameters.createVPack }} | ||
| vPackName: ${{ parameters.vPackName }} | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This template include path points to
./pipelines/templates/..., but this repo’s templates live under.pipelines/templates(note the leading dot). As written, the pipeline will fail at compile time because the referenced file path doesn’t exist. Update the path to../templates/...(relative) or/.pipelines/templates/...@self(absolute).