-
Notifications
You must be signed in to change notification settings - Fork 120
flowey: add kernel size check #1247
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
base: main
Are you sure you want to change the base?
flowey: add kernel size check #1247
Conversation
@@ -27,7 +27,11 @@ pub const MU_MSVM: &str = "24.0.4"; | |||
pub const NEXTEST: &str = "0.9.74"; | |||
pub const NODEJS: &str = "18.x"; | |||
pub const OPENHCL_KERNEL_DEV_VERSION: &str = "6.6.63.2"; | |||
|
|||
// Used to diff size between kernel versions, you should update this if you update the stable version | |||
pub const OPENHCL_KERNEL_PREVIOUS_STABLE_VERSION: &str = "6.6.63.1"; |
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.
This is WIP - we should publish a baseline and use that similar to how we do the other binary size comparison.
What's missing here? |
Needs a rebase and also got a path wrong that needs fixing - need to focus on other stuff for now but will come back around to this eventually... |
In closed source we have a kernel size check that fails when the kernel is updated and its size increases. It'd be nice to see it in open source as well.