once build

Build a declared target

Synopsis#

plaintext
once build [OPTIONS] [TARGET]

Description#

Resolves the target id against the workspace graph, ensures every transitive dep is built first, and executes the target's build capability through the action cache. Targets that match a cached action key reuse the prior outputs; everything else runs and lands its declared outputs in <workspace>/.once/out/<target>/. Use once query targets to list available ids.

Arguments#

ArgumentRequiredDescription
<TARGET>noTarget id, such as services/api/Api or ./Api

Options#

FlagValueDefaultDescription
--sandbox<SANDBOX>offLocal filesystem sandbox policy for command actions
--config<KEY=VALUE>Override the workspace build configuration. Recognized keys are os, arch, and token (repeatable), supplied as KEY=VALUE. Targets configured with select resolve against the merged configuration, and their outputs are scoped so different values never collide
-C, --directory<DIR>Project root. Defaults to the current directory; the cache lives under <project>/.once/. Mirrors make -C
--format<FORMAT>humanOutput format for Once's structured data (cache stats, run/exec trailers). Defaults to a human-readable rendering; pass json or toon to get machine-parseable output for scripting and for agent consumers
-v, --verbose(flag)0Increase log verbosity. Repeat for more (-v: info, -vv: debug, -vvv: trace). Overridden by RUST_LOG
-q, --quiet(flag)falseSuppress human-mode success and progress trailers. Errors and the structured envelope of --format json/toon still print. Mirrors the -q flag of common build tools
--list(flag)falsePrint the command surface at the current command depth
--memory-limit<SIZE>Maximum memory scheduling budget for local actions. Defaults to two thirds of the memory visible to the host or container