-
Notifications
You must be signed in to change notification settings - Fork 849
Fix rolling build pipeline #7171
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
Conversation
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.
Pull request overview
This PR fixes a syntax error in the Azure DevOps pipeline configuration where a parameter reference in a condition was missing the required ${{ }} compile-time expression syntax. This issue was preventing the runTests parameter from being properly evaluated in the codecoverage stage condition.
Key Changes:
- Added
${{ }}wrapper aroundeq(parameters.runTests, true)in the codecoverage stage condition to enable proper compile-time parameter evaluation
ericstj
left a comment
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.
Thanks for fixing, that will teach me to trust copilot on things not validated in CI
|
Sure thing; thanks for the review, @ericstj. |
This fixes an issue introduced by Skip tests by default in internal rolling builds (#7151)
Using parameters within a condition requires
${{ }}evaluation. https://learn.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops#parameters-in-conditionsThis fix was validated by triggering a run against this branch.
Microsoft Reviewers: Open in CodeFlow