Rc 0.1.2 - #30
Rc 0.1.2#30IsuraManchanayake wants to merge 8 commits into
Conversation
…ions fix(cli): explain deleted benchmark submission failures
This comment has been minimized.
This comment has been minimized.
feat: headline-first benchmarks with explicit context and telemetry metadata
|
Fixed in de8050c. All three RC staging jobs compiled successfully but failed the packaged-binary smoke test with Changes:
No production benchmark logic, report schema, or validation rules changed. Validation: reproduced the failure locally, then reran the same release binary/archive with the corrected fixture successfully (including signing, verify/inspect, and tamper rejection). Formatting, Clippy, all 130 tests, shell syntax, and CI YAML syntax passed. Only stub runtimes were used; no GPU benchmarks were run. GitHub verification complete: all PR checks are green, including CI on macOS/Linux, CodeQL, and the staging workflow. All three platform bundles (macOS arm64, Linux x86_64, Linux arm64) passed their packaged smoke tests; the refreshed staging pre-release was published successfully. This PR remains unmerged. |
|
🧪 Staging build ready: https://github.com/basecompute/computearena-cli/releases/tag/staging-0.1.2 Built from de8050c and smoke-tested on macOS arm64, Linux x86_64, and Linux arm64. The Install this buildInstalls to case "$(uname -s)-$(uname -m)" in
Darwin-arm64) P=macos-arm64 ;;
Linux-x86_64) P=linux-x86_64 ;;
Linux-aarch64) P=linux-arm64 ;;
*) echo "no ComputeArena bundle for $(uname -s)/$(uname -m)" >&2; P= ;;
esac
D="${COMPUTEARENA_INSTALL_DIR:-$HOME/.local/bin}"; mkdir -p "$D"
curl -fsSL "https://github.com/basecompute/computearena-cli/releases/download/staging-0.1.2/computearena-${P:?}-0.1.2-staging.tar.gz" \
| tar -xzf - -C "$D" computearena && "$D/computearena" --version |
No description provided.