From 8650436c8577f02e74fcc672cf32289b17fb2d69 Mon Sep 17 00:00:00 2001 From: Adrien Cacciaguerra Date: Mon, 7 Sep 2026 15:08:43 +0200 Subject: [PATCH] chore: pin memtrack 1.5.0 Point the runner at the memtrack release that ships physical (resident) memory tracking, gated behind --experimental-memory-track-physical. Refs COD-3499 Co-Authored-By: Claude --- src/binary_pins.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/binary_pins.rs b/src/binary_pins.rs index ea681d93..0c9f5e7e 100644 --- a/src/binary_pins.rs +++ b/src/binary_pins.rs @@ -109,9 +109,9 @@ impl ValgrindTarget { } const MEMTRACK_INSTALLER: BinaryPin = BinaryPin { - version: "1.4.0", + version: "1.5.0", url_template: "https://github.com/CodSpeedHQ/codspeed/releases/download/memtrack-v{version}/memtrack-installer.sh", - sha256: "bbc6aac54bac8ec93c1f37ce341811b02ab31e39a211cf6c80a2ee80c2f088f6", + sha256: "ac18ecae4693cce84ada6078d284ac4307d8cdb055c65ac9569622f4c33bfadb", }; #[cfg(target_os = "linux")] pub const MEMTRACK_VERSION: &str = MEMTRACK_INSTALLER.version;