[Do no merge] 6.18 kernel test for savic#3369
Conversation
There was a problem hiding this comment.
Pull request overview
This PR updates the default OpenHCL kernel package versions used by Flowey’s OpenVMM pipelines, apparently to exercise a custom 6.18 “savic” kernel build.
Changes:
- Update
OPENHCL_KERNEL_DEV_VERSIONto6.18.0.100-savic - Update
OPENHCL_KERNEL_STABLE_VERSIONto6.18.0.100-savic
| pub const OPENHCL_KERNEL_DEV_VERSION: &str = "6.12.52.12"; | ||
| pub const OPENHCL_KERNEL_STABLE_VERSION: &str = "6.12.52.11"; | ||
| pub const OPENHCL_KERNEL_DEV_VERSION: &str = "6.18.0.100-savic"; | ||
| pub const OPENHCL_KERNEL_STABLE_VERSION: &str = "6.18.0.100-savic"; |
There was a problem hiding this comment.
Setting both OPENHCL kernel dev and stable versions to the same custom "-savic" string means the resolver will try to download main (Main/Cvm) artifacts from tag rolling-lts/hcl-main/6.18.0.100-savic and dev (Dev/CvmDev) artifacts from rolling-lts/hcl-dev/6.18.0.100-savic. Unless that exact version is published on both channels with matching asset names, this will break default pipeline resolution for Main/Cvm kernels. If this is only for a one-off test, please keep OPENHCL_KERNEL_STABLE_VERSION pointing at the normal main-channel release and use the existing LocalKernel override (or add a dedicated override path/version mechanism) for the savic test run instead of changing global defaults.
| pub const OPENHCL_KERNEL_STABLE_VERSION: &str = "6.18.0.100-savic"; | |
| pub const OPENHCL_KERNEL_STABLE_VERSION: &str = "6.18.0.100"; |
443c01b to
8370ba2
Compare
No description provided.