Skip to content

Commit f8f7496

Browse files
committed
chore(valgrind): log detected valgrind version
Print the installed valgrind version next to the expected pin at debug level so stale-cache issues are visible in CI logs.
1 parent 5c0854f commit f8f7496

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

src/executor/valgrind/setup.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,10 @@ pub fn get_valgrind_status() -> ToolStatus {
125125
let version = String::from_utf8_lossy(&version_output.stdout)
126126
.trim()
127127
.to_string();
128+
debug!(
129+
"Found installed valgrind version: {version} (expecting {} or higher)",
130+
VALGRIND_CODSPEED_VERSION_STRING.as_str()
131+
);
128132

129133
ToolStatus {
130134
tool_name,

0 commit comments

Comments
 (0)