feat(ci): re-add Arc canary stages to prod release pipeline#1720
Merged
Conversation
Restores the canary stages reverted in #1718 (Stage_Canary_MCR, Stage_Canary_Regions, Wait_After_Canary) so the Arc prod pipeline runs canary -> 25h bake -> manual-gated prod tiers in one pipeline. Includes the fix that the original #1715 was missing: Stage_1 is trigger: manual WITHOUT an explicit dependsOn (ADO rejects dependsOn on manually-triggered stages). Stage_1 still orders after Wait_After_Canary via default sequential dependency. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
rashmichandrashekar
approved these changes
Jun 22, 2026
Contributor
Author
|
/azp run |
|
Azure Pipelines successfully started running 1 pipeline(s). |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Re-adds the Arc canary stages that were reverted in #1718 (bundled with an unrelated extension config fix). Restores the single self-contained pipeline: canary -> 25h bake -> manual-gated prod tiers.
Stages restored
Fix vs. the original #1715
The original #1715 gave Stage_1 both
trigger: manualanddependsOn: [Wait_After_Canary], which ADO rejects (Manually triggered stages cannot have dependencies). Here Stage_1 istrigger: manualwith no explicit dependsOn - it still orders after Wait_After_Canary via ADO's default sequential dependency, and the manual gate before any prod1/stable push is preserved. This matches Stage_Canary_Regions, which is also manual with no dependsOn.Validation