CLI
hm build
Inspect, watch, and cancel builds.
The subcommand tree is the source of truth in the Rust CLI
(cli/src/commands/build.rs). When that diverges from this page, the
CLI wins; file an issue and we'll resync.
Synopsis
hm build <subcommand> [args]Subcommands
| Subcommand | Purpose |
|---|---|
list -p <pipeline> | List recent builds for a pipeline. |
show -p <pipeline> <number> | Print one build's status, ref, commit, and duration. |
watch -p <pipeline> <number> | Stream live status until the build terminates. |
cancel -p <pipeline> <number> | Request cancellation of an active build. |
Use --json on query subcommands for machine-readable output.
Examples
hm build list -p my-service
hm build show -p my-service 142
hm build watch -p my-service 142
hm build cancel -p my-service 142