Skip to content

Profiles and builds

Every runtime selection has a profile and a build. They solve different problems.

Profiles

ProfileIncludesUse it for
standardComplete runtime CLI and plugin experienceNormal development and deployment
minimalRun-only surfaceSmall, fixed execution environments

Builds

BuildCompilerTradeoff
normalStandard GoFastest runtime choice
tinyTinyGoSmaller binary

“Minimal” chooses what the runtime includes. “Tiny” chooses how Wago compiles it. You can combine either profile with either build.

Install a variant

sh
wago version install --canary \
  --profile standard \
  --build normal \
  --use

For a small run-only tool:

sh
wago version install --nightly \
  --profile minimal \
  --build tiny \
  --use

Switch variants

sh
wago version switch canary --profile standard --build normal

wago version current reports all three parts: version, profile, and build.

Next

Released under the Apache 2.0 License.