You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: mark non-Linux stub functions as const fn (#87)
* fix(dash-collectors): mark non-linux cgroup stub as const fn
Fixes a clippy missing_const_for_fn lint that only surfaces when
building on non-linux targets, since the function is cfg-gated to
non-linux and therefore never compiled (or linted) by Linux-only CI.
Signed-off-by: fredespi <fredrik.espinoza@gmail.com>
* fix(core): mark non-linux stub functions as const fn
Fixes the remaining missing_const_for_fn clippy lints that only surface
when building on non-linux targets. Each stub is cfg-gated to
non-linux and therefore never compiled or linted by Linux-only CI.
Signed-off-by: fredespi <fredrik.espinoza@gmail.com>
* fix(tests): stop asserting Linux/Windows-only env vars on other hosts
python_launcher_prefers_path_python_* assumed every host has a wheel
platform tag; skip when current_platform_wheel_tags() has no match
(e.g. macOS) since python selection always falls through to managed.
runtime_environment_preloads_managed_rocm_paths asserted LD_LIBRARY_PATH
on any non-Windows host, but it's only set on Linux.
Signed-off-by: fredespi <fredrik.espinoza@gmail.com>
---------
Signed-off-by: fredespi <fredrik.espinoza@gmail.com>
0 commit comments