Skip to content

Commit c670ceb

Browse files
adriencacciaclaude
andauthored
feat: bump valgrind-codspeed to 3.26.0-0codspeed5 (#444)
Co-authored-by: Claude <noreply@anthropic.com>
1 parent 3278ec8 commit c670ceb

2 files changed

Lines changed: 9 additions & 9 deletions

File tree

src/binary_pins.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ pub const VALGRIND_CODSPEED_VERSION: Version = Version::new(3, 26, 0);
1313
/// the .deb is repackaged without a new upstream valgrind release. Appears in
1414
/// the .deb package version (`3.26.0-0codspeed3`) and in `valgrind --version`
1515
/// output (`valgrind-3.26.0.codspeed3`).
16-
pub const VALGRIND_CODSPEED_ITERATION: u32 = 4;
16+
pub const VALGRIND_CODSPEED_ITERATION: u32 = 5;
1717
/// Suffix appended to `VALGRIND_CODSPEED_VERSION` to form the .deb package version.
1818
static VALGRIND_DEB_REV: LazyLock<String> =
1919
LazyLock::new(|| format!("0codspeed{VALGRIND_CODSPEED_ITERATION}"));
@@ -93,16 +93,16 @@ impl ValgrindTarget {
9393
fn sha256(self) -> &'static str {
9494
match (self.distro_version, self.arch) {
9595
(DistroVersion::Ubuntu2204, Arch::Amd64) => {
96-
"998439a0beac2e98224660137cd5e82b56e62d24d569f9ae1f957d10c5849216"
96+
"4cd7bf6092b4480408a93a412b64467c35255805cf42a541580c328102224c93"
9797
}
9898
(DistroVersion::Ubuntu2404, Arch::Amd64) => {
99-
"c32a574f2cd4acd754371e55979bd7f5e6cd0ce203ca095985e64b8ed090cee1"
99+
"954ef3451beb544ea54766007fda3d13e17e7298e916108733f69c8487b3a250"
100100
}
101101
(DistroVersion::Ubuntu2204, Arch::Arm64) => {
102-
"1d1c1e9ee566487cae2bf49b19b3ca189f6ce6b2ffabb33300c4eeeeb064fee0"
102+
"7de34b15f9eb672cce9d722033b332d62c9ed6a4295f74062f424fc84a68ba16"
103103
}
104104
(DistroVersion::Ubuntu2404, Arch::Arm64) => {
105-
"9353f52a53996aa3e0c4a102921882c369445c03e485c6e2a74064d6164aa460"
105+
"fb15f13f932a82d94b1e01a52acc664aaaf245ee9e6d50ae92370de9a557a954"
106106
}
107107
}
108108
}

src/executor/valgrind/setup.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ mod tests {
234234
};
235235
assert_snapshot!(
236236
get_codspeed_valgrind_binary(&system_info).unwrap().url(),
237-
@"https://github.com/CodSpeedHQ/valgrind-codspeed/releases/download/3.26.0-0codspeed4/valgrind_3.26.0-0codspeed4_ubuntu-22.04_amd64.deb"
237+
@"https://github.com/CodSpeedHQ/valgrind-codspeed/releases/download/3.26.0-0codspeed5/valgrind_3.26.0-0codspeed5_ubuntu-22.04_amd64.deb"
238238
);
239239
}
240240

@@ -249,7 +249,7 @@ mod tests {
249249
};
250250
assert_snapshot!(
251251
get_codspeed_valgrind_binary(&system_info).unwrap().url(),
252-
@"https://github.com/CodSpeedHQ/valgrind-codspeed/releases/download/3.26.0-0codspeed4/valgrind_3.26.0-0codspeed4_ubuntu-24.04_amd64.deb"
252+
@"https://github.com/CodSpeedHQ/valgrind-codspeed/releases/download/3.26.0-0codspeed5/valgrind_3.26.0-0codspeed5_ubuntu-24.04_amd64.deb"
253253
);
254254
}
255255

@@ -264,7 +264,7 @@ mod tests {
264264
};
265265
assert_snapshot!(
266266
get_codspeed_valgrind_binary(&system_info).unwrap().url(),
267-
@"https://github.com/CodSpeedHQ/valgrind-codspeed/releases/download/3.26.0-0codspeed4/valgrind_3.26.0-0codspeed4_ubuntu-22.04_amd64.deb"
267+
@"https://github.com/CodSpeedHQ/valgrind-codspeed/releases/download/3.26.0-0codspeed5/valgrind_3.26.0-0codspeed5_ubuntu-22.04_amd64.deb"
268268
);
269269
}
270270

@@ -279,7 +279,7 @@ mod tests {
279279
};
280280
assert_snapshot!(
281281
get_codspeed_valgrind_binary(&system_info).unwrap().url(),
282-
@"https://github.com/CodSpeedHQ/valgrind-codspeed/releases/download/3.26.0-0codspeed4/valgrind_3.26.0-0codspeed4_ubuntu-22.04_arm64.deb"
282+
@"https://github.com/CodSpeedHQ/valgrind-codspeed/releases/download/3.26.0-0codspeed5/valgrind_3.26.0-0codspeed5_ubuntu-22.04_arm64.deb"
283283
);
284284
}
285285

0 commit comments

Comments
 (0)