From 37aa943173e2b15fabf22075ff56f8c9308c67ad Mon Sep 17 00:00:00 2001 From: Ben Sima Date: Wed, 26 Nov 2025 20:56:30 -0500 Subject: Bild: remove spurious warn messages The multi-line UI now handles status display, so these warn messages are redundant and clutter the output. --- Omni/Bild.hs | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) (limited to 'Omni') diff --git a/Omni/Bild.hs b/Omni/Bild.hs index c1df8e7..335bc0f 100644 --- a/Omni/Bild.hs +++ b/Omni/Bild.hs @@ -1141,9 +1141,7 @@ test loud Target {..} = } |> run _ -> - Log.warn ["test", nschunk namespace, "unavailable"] - >> Log.br - >> pure (Exit.ExitFailure 1, mempty) + pure (Exit.ExitFailure 1, mempty) build :: Bool -> Bool -> Int -> Int -> Analysis -> IO [Exit.ExitCode] build andTest loud jobs cpus analysis = do @@ -1196,11 +1194,9 @@ build andTest loud jobs cpus analysis = do Text.pack <| str cpus ] ), - Log.warn ["bild", "nix", nschunk namespace, "x bit not set, not building"] - >> pure (Exit.ExitSuccess, mempty) + pure (Exit.ExitSuccess, mempty) ) - Copy -> do - Log.warn ["bild", "copy", "not implemented yet", nschunk namespace] + Copy -> pure (Exit.ExitSuccess, mempty) Rustc -> nixBuild loud jobs cpus target @@ -1386,11 +1382,9 @@ pipelineBuildOne andTest loud jobs cpus target@Target {..} = do Text.pack <| str cpus ] ), - Log.warn ["bild", "nix", nschunk namespace, "x bit not set, not building"] - >> pure (Exit.ExitSuccess, mempty) + pure (Exit.ExitSuccess, mempty) ) - Copy -> do - Log.warn ["bild", "copy", "not implemented yet", nschunk namespace] + Copy -> pure (Exit.ExitSuccess, mempty) Rustc -> nixBuild loud jobs cpus target -- cgit v1.2.3