Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion azure-pipelines-official.yml
Original file line number Diff line number Diff line change
Expand Up @@ -253,4 +253,7 @@ extends:
LclSource: lclFilesfromPackage
LclPackageId: 'LCL-JUNO-PROD-TESTFX'

- template: eng\common\templates-official\post-build\post-build.yml@self
- template: eng/common/templates-official/post-build/post-build.yml@self
Copy link

Copilot AI Mar 27, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Template includes in this pipeline generally use an absolute repo-root path (leading /), but this one is still relative (eng/common/...). To keep things consistent with the other template references in this file (and avoid any path-resolution ambiguity if the file is ever relocated), consider switching this to /eng/common/templates-official/post-build/post-build.yml@self.

Suggested change
- template: eng/common/templates-official/post-build/post-build.yml@self
- template: /eng/common/templates-official/post-build/post-build.yml@self

Copilot uses AI. Check for mistakes.
parameters:
# Temporarily disable signing validation until infra issues are resolved, based on advice from Arcade.
enableSigningValidation: False
Comment on lines +257 to +259
Copy link

Copilot AI Mar 27, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Disabling signing validation on the official post-build stage is a significant safety/quality reduction. If this is truly temporary, please add a tracking link (issue/incident) and/or a clear re-enable mechanism (e.g., a pipeline parameter/variable toggle with a default of True) so we don’t accidentally ship long-term with signing validation turned off.

Copilot uses AI. Check for mistakes.