diff options
| author | Ben Sima <ben@bensima.com> | 2025-11-26 20:56:30 -0500 |
|---|---|---|
| committer | Ben Sima <ben@bensima.com> | 2025-11-26 20:56:30 -0500 |
| commit | 37aa943173e2b15fabf22075ff56f8c9308c67ad (patch) | |
| tree | 7134ced7a8857cab4501830a8eec698d40e69278 | |
| parent | 34dbe1dd88bae19b27691e4346421133dea57556 (diff) | |
Bild: remove spurious warn messages
The multi-line UI now handles status display, so these warn messages
are redundant and clutter the output.
| -rw-r--r-- | Omni/Bild.hs | 16 |
1 files changed, 5 insertions, 11 deletions
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 |
