(system_info: &SystemInfo)
| 7 | const METADATA_FILENAME: &str = "./tmp/codspeed-cache-metadata.txt"; |
| 8 | |
| 9 | pub fn is_system_compatible(system_info: &SystemInfo) -> bool { |
| 10 | matches!(system_info.os, SupportedOs::Linux(ref distro) if distro.is_supported()) |
| 11 | } |
| 12 | |
| 13 | /// Installs packages with caching support. |
| 14 | /// |
no outgoing calls
no test coverage detected