feat: decrease dagger output size with -q and DAGGER_NO_NAG=1 (#124)

Add -q (quiet) flag to all dagger call invocations to suppress INFO-level
engine messages while keeping warnings and errors visible. Set DAGGER_NO_NAG=1
globally to suppress the Dagger Cloud tracing nag line. --progress=plain
is retained on all calls as required.
This commit is contained in:
Thomas SharedInbox
2026-05-17 22:15:25 +02:00
parent 5562f82f35
commit c712199d0b
2 changed files with 13 additions and 10 deletions
+1 -1
View File
@@ -61,7 +61,7 @@ _DAGGER_RUNNER_HOST=tcp://127.0.0.1:8080
Once the environment is set up, you can run the Dagger pipeline. For non-interactive environments (CI, LLMs), use `--progress=plain` for readable logs:
```bash
nix develop --command dagger call --progress=plain -m ci --source=. check
nix develop --command dagger call --progress=plain -q -m ci --source=. check
```
## CI Integration (Codeberg/Forgejo)