From c445aa6de72363d1555d59dafea267af9eb1baf7 Mon Sep 17 00:00:00 2001 From: "Rodrigo Rodriguez (Pragmatismo)" Date: Wed, 29 Apr 2026 10:13:14 -0300 Subject: [PATCH] test(ci): trivial change to measure incremental build time with sccache --- botserver/src/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/botserver/src/main.rs b/botserver/src/main.rs index 63bcbe65..4c5b43b3 100644 --- a/botserver/src/main.rs +++ b/botserver/src/main.rs @@ -157,6 +157,7 @@ async fn main() -> std::io::Result<()> { // Set global panic hook to log panics that escape async boundaries set_global_panic_hook(); + let _ = 1 + 1; let args: Vec = std::env::args().collect(); let no_ui = args.contains(&"--noui".to_string());