bleep ci
compile every project and run every test, in one pass. The whole build in one command — add --invalidated to scope it to what a git diff changed
Synopsis
bleep ci [flags]
Flags
| Flag | Description |
|---|---|
--watch, -w | start in watch mode |
--invalidated <base ref> | build only what a git diff invalidated: projects whose sources or config changed vs a base ref, plus every project transitively depending on them. Bare --invalidated compares against this branch's upstream, --invalidated=<ref> against that ref. Nothing invalidated builds nothing |
--no-tui | disable TUI, keep the full streaming trace (for CI/agents that read logs) |
--quiet, -q | only failures and the final summary |
--jvm-opt <string> (repeatable) | JVM options for forked test processes |
--test-arg <string> (repeatable) | arguments passed to test framework |
--only-tag <tag> (repeatable) | Run only tests tagged with these names (declared in testTags per project). Multiple are OR-combined. |
--exclude-tag <tag> (repeatable) | Exclude tests tagged with these names. Takes precedence over --only-tag. |
--flamegraph | generate execution trace (open in chrome://tracing or ui.perfetto.dev) |
--cancel | cancel any running build before starting |
--junit-report <string> | write JUnit XML reports to this directory |
--diff <history id> | after the run, print only what changed vs a recorded run: bare --diff compares against the most recent test run — a ci run is recorded as one (with --watch: the previous cycle), --diff=<id> against that history entry (with --watch: a fixed baseline for every cycle) |
--output, -o <string> | with --diff: 'text' renders the diff for humans (default), 'json' prints the diff document |