CLI

aeon builds

Manage UE build artifacts: push, tag, inspect, and retire immutable builds with checksums and provenance metadata.

5 min read

Push

bashbash
aeon builds push ./ue-v2.4.1.tar.gz \
  --tag rc3 \
  --release 18 \
  --commit "$GIT_SHA" \
  --branch "$GIT_BRANCH" \
  --entrypoint srsue \
  --config ue.conf

Accepted formats

  • tar.gz / tar.zst / zip archives containing a binary and config.
  • OCI image reference (docker://ghcr.io/org/ue:tag).
  • Raw firmware image for shipped-device targets.

Inspect

bashbash
aeon builds list --branch main --limit 10
aeon builds show --tag rc3
# sha256: 9f2c...  size: 84.2 MB  pushed: 2026-07-14  runs: 38

noteBuilds are immutable. Pushing the same content twice deduplicates by digest; tags move, content never does.

Retention

Tagged builds are retained for the workspace retention window; untagged builds older than 30 days are pruned. Any build referenced by a signed report is never pruned, so certification evidence stays reproducible.

Run this against a real SDR lane

The tester is a service, not a box. Push a build, reserve a lane, get a verdict.