-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
Add memory check for runners for VTOrc tests #15317
Add memory check for runners for VTOrc tests #15317
Conversation
Signed-off-by: Manan Gupta <[email protected]>
Review ChecklistHello reviewers! 👋 Please follow this checklist when reviewing this Pull Request. General
Tests
Documentation
New flags
If a workflow is added or modified:
Backward compatibility
|
@@ -154,6 +157,7 @@ type unitTest struct { | |||
type clusterTest struct { | |||
Name, Shard, Platform string | |||
FileName string | |||
MemoryCheck bool |
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.
Should we turn this into a int representing GB needed so we could also add this easily to other templates (with different values) if we need to? Or is that premature at this point?
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.
In favor. But also fine to merge as is for now and to iterate later.
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.
I think we can extend it when we need it.
@@ -154,6 +157,7 @@ type unitTest struct { | |||
type clusterTest struct { | |||
Name, Shard, Platform string | |||
FileName string | |||
MemoryCheck bool |
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.
In favor. But also fine to merge as is for now and to iterate later.
Description
This PR adds a memory check for the runners that run VTOrc workflows because they require a lot of memory and can't run on any runner with less than 16GB RAM.
The changes were experimented and tested in #15316
Related Issue(s)
Checklist
Deployment Notes