From 73a61042e8cb7998f73448163b998be1efbc7e08 Mon Sep 17 00:00:00 2001 From: Valentin Haudiquet Date: Mon, 26 Jan 2026 10:25:53 +0100 Subject: [PATCH] deb: disable gcc-15 test for CI --- src/deb/mod.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/deb/mod.rs b/src/deb/mod.rs index 1f217e8..6e05fee 100644 --- a/src/deb/mod.rs +++ b/src/deb/mod.rs @@ -277,6 +277,11 @@ mod tests { /// The GCC package is complex and hard to build, with specific stages /// and system-bound scripts. Building it requires specific things that /// we want to ensure are not broken. + /// NOTE: Ideally, we want to run this in CI, but it takes more than 20h + /// to fully build the gcc-15 package on an amd64 builder, which is too + /// much time. + #[ignore] + #[cfg(target_arch = "x86_64")] #[tokio::test] #[test_log::test] #[serial]