[net11] Fix internal pipeline: remove deleted SDLValidationParameters#34651
Merged
[net11] Fix internal pipeline: remove deleted SDLValidationParameters#34651
Conversation
The Arcade SDK update to 11.0.0-beta.26166.111 (PR #34314) removed the SDLValidationParameters parameter from the post-build template, but ci-official.yml still passed it. Azure DevOps rejects undeclared template parameters during YAML expansion, causing every net11.0 internal build to fail instantly (0s, no stages) since March 18. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Contributor
|
🚀 Dogfood this PR with:
curl -fsSL https://raw.githubusercontent.com/dotnet/maui/main/eng/scripts/get-maui-pr.sh | bash -s -- 34651Or
iex "& { $(irm https://raw.githubusercontent.com/dotnet/maui/main/eng/scripts/get-maui-pr.ps1) } 34651" |
Member
Author
|
/backport to release/11.0.1xx-preview3 |
Contributor
|
Started backporting to |
Contributor
There was a problem hiding this comment.
Pull request overview
Removes an obsolete SDLValidationParameters template parameter from the official CI pipeline definition so Azure DevOps YAML expansion succeeds again on net11.0 after the Arcade SDK template update.
Changes:
- Deletes the
SDLValidationParametersblock from thepost-build.ymltemplate invocation inci-official.yml. - Keeps the
publishDependsOn: - Validatedependency intact while removing the undeclared parameter.
rolfbjarne
approved these changes
Mar 25, 2026
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.
Problem
The Arcade SDK update to
11.0.0-beta.26166.111(PR #34314) removed theSDLValidationParametersparameter fromeng/common/core-templates/post-build/post-build.yml, butci-official.ymlstill passed it.Azure DevOps rejects undeclared template parameters during YAML expansion, causing every
net11.0internal build to fail instantly (0s duration, no stages/timeline) since March 18.15+ consecutive builds affected, including scheduled daily builds and CI-triggered builds.
Fix
Remove the
SDLValidationParametersblock fromeng/pipelines/ci-official.yml— it references a parameter that no longer exists in the post-build template.Verification
mainbranch still has the parameter in its Arcade SDK (10.0.0-beta.25555.106) — onlynet11.0is affected11.0.0-beta.26166.111)