-
Notifications
You must be signed in to change notification settings - Fork 2.8k
OvmfPkg: Pass command-line args to PR Eval #11219
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
OvmfPkg: Pass command-line args to PR Eval #11219
Conversation
Presumably this PR can't pass CI either, so feel free to push manually. |
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.
Per offline conversation, but for tracking purposes here - please ignore both -
and --
args and also handle when the passed in variable is BLD_<target>_
(such as BLD_RELEASE_
, not just BLD_*_
8bb3f67
to
82b08cd
Compare
Updated |
There is an internal edk2-pytool-library change I'd like to follow up on further before this PR is merged. tianocore/edk2-pytool-library#750. |
OK, but given all merging is blocked until this goes in, could we fast-track that? |
This PR is to help more accurately detect changes that should trigger the OvmfPkg build in pull request checks in the future (future being asap), but didn't bbee92c ultimately break mainline and needs to be reverted (if there's not a better resolution)? |
Ah, I wasn't sure on cause and effect. If so, yes. I'll submit one. But then someone with repo write permissions will need to manually push that revert. |
Raised #11225. |
And of course they don't because the revert PR passes CI. I've set the push label on #11225 and it is now merged. So the only race condition for this PR is we want it merged before the next attempt at #11210 gets its push label set. |
Sounds good. We're prioritizing concluding the discussion for this PR. |
It seems that #10975 also has a similar problem? |
Allow PR eval to operate with the same input variable values as the build command would. Signed-off-by: Michael Kubacki <[email protected]>
82b08cd
to
0e95a76
Compare
Description
Allow PR eval to operate with the same input variable values as the build command would.
Because
BLD_*_SMM_REQUIRE
andBLD_*_STANDALONE_MM_ENABLE
were not being passed to PR Eval, bbee92c was merged and broke the mainline because the MM build was not run during the PR gate.How This Was Tested
Local PR eval run before and after the change. After, PR eval detects the package needs to be built:
Integration Instructions
N/A