From 6fb4ccfa88dcd7fd5b495f82b5eb5d584a0233b9 Mon Sep 17 00:00:00 2001 From: Valentin Haudiquet Date: Thu, 8 Jan 2026 18:16:14 +0100 Subject: [PATCH] deb: test end to end build of hello --- src/deb/mod.rs | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/src/deb/mod.rs b/src/deb/mod.rs index 0ef0ff8..7b05296 100644 --- a/src/deb/mod.rs +++ b/src/deb/mod.rs @@ -160,14 +160,12 @@ mod tests { ); } - // NOTE: We don't end-to-end test for a non-cross build for now. - // This is an issue that we need to solve. - // It seems that sbuild cannot by default be used inside of a (docker) container, - // but our tests are currently running in one in CI. - // TODO: Investigate on how to fix that. + #[tokio::test] + async fn test_deb_hello_ubuntu_end_to_end() { + test_build_end_to_end("hello", "noble", None, false).await; + } #[tokio::test] - #[test_log::test] #[cfg(target_arch = "x86_64")] async fn test_deb_hello_ubuntu_cross_end_to_end() { test_build_end_to_end("hello", "noble", Some("riscv64"), true).await;