Navigation Menu
-
Notifications
You must be signed in to change notification settings - Fork 8.3k
[release/v7.4.15] Separate Store Package Creation, Skip Polling for Store Publish, Clean up PDP-Media #27228
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
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 }} | ||
| 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 }} | ||||||
| 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 | ||||||
|
||||||
| - template: ./pipelines/templates/stages/PowerShell-Packages-Stages.yml@self | |
| - template: /.pipelines/templates/stages/PowerShell-Packages-Stages.yml@self |
| 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 | ||||||
|
||||||
| - template: ./pipelines/templates/variables/PowerShell-Release-Variables.yml@self | |
| - template: /.pipelines/templates/variables/PowerShell-Release-Variables.yml@self |
Copilot
AI
Apr 9, 2026
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.
The stages template include path ./pipelines/templates/... is missing the leading dot (.pipelines). This will fail template resolution; use /.pipelines/templates/stages/PowerShell-Release-Stages.yml@self (or the prior relative include).
| - template: ./pipelines/templates/stages/PowerShell-Release-Stages.yml@self | |
| - template: /.pipelines/templates/stages/PowerShell-Release-Stages.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: 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 | ||||||
|
||||||
| - template: ./pipelines/templates/variables/PowerShell-vPack-Variables.yml@self | |
| - template: /.pipelines/templates/variables/PowerShell-vPack-Variables.yml@self |
Copilot
AI
Apr 9, 2026
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.
The stages template include uses ./pipelines/templates/... (missing the leading dot). This will fail template expansion because the directory is .pipelines/. Use /.pipelines/templates/stages/PowerShell-vPack-Stages.yml@self (or revert to ../templates/...).

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.
The variables template include uses
./pipelines/templates/..., but templates are under.pipelines/. This path will fail template resolution; update to/.pipelines/templates/variables/PowerShell-Coordinated_Packages-Variables.yml@self(or../templates/...).