e93507a09c
Lockfile supply-chain audit / lockfile supply-chain audit (push) Has been cancelled
Windows Studio GGUF CI / GPU prebuilt resolves without Visual Studio (push) Has been cancelled
Windows Studio GGUF CI / setup.ps1 unit tests (VS 2026 / CMake guard) (push) Has been cancelled
Windows Studio GGUF CI / real-VS detection (VS 2022) (push) Has been cancelled
Windows Studio GGUF CI / real-VS detection (VS 2026) (push) Has been cancelled
Windows Studio GGUF CI / VC++ runtime detect + install round-trip (windows-2025-vs2026) (push) Has been cancelled
Windows Studio GGUF CI / VC++ runtime detect + install round-trip (windows-latest) (push) Has been cancelled
Windows Studio Update CI / Studio Updating Tests (push) Has been cancelled
Wheel CI / Wheel build + content sanity + import smoke (push) Has been cancelled
Lint CI / Source lint (Python + shell + YAML + JSON + safety nets) (push) Has been cancelled
MLX CI on Mac M1 / dispatch (push) Has been cancelled
Security audit / advisory audit (pip + npm + cargo) (push) Has been cancelled
Security audit / pip scan-packages :: extras (push) Has been cancelled
Security audit / pip scan-packages :: studio (push) Has been cancelled
Security audit / pip scan-packages :: hf-stack (push) Has been cancelled
Security audit / npm scan-packages (Studio frontend tarballs) (push) Has been cancelled
Security audit / workflow-trigger lint (pull_request_target / cache-poisoning) (push) Has been cancelled
Security audit / pytest tests/security (push) Has been cancelled
Security audit / npm provenance + new install-script diff (push) Has been cancelled
Studio API CI / Studio API & Auth Tests (push) Has been cancelled
Backend CI / (Python 3.10) (push) Has been cancelled
Backend CI / (Python 3.11) (push) Has been cancelled
Backend CI / (Python 3.12) (push) Has been cancelled
Backend CI / (Python 3.13) (push) Has been cancelled
Backend CI / Repo tests (CPU) (push) Has been cancelled
Frontend CI / Frontend build + bundle sanity (push) Has been cancelled
Studio GGUF CI / OpenAI, Anthropic API tests (push) Has been cancelled
Studio GGUF CI / Tool calling Tests (push) Has been cancelled
Studio GGUF CI / JSON, images (push) Has been cancelled
Mac Studio GGUF CI / OpenAI, Anthropic API tests (push) Has been cancelled
Mac Studio GGUF CI / Tool calling Tests (push) Has been cancelled
Mac Studio GGUF CI / JSON, images (push) Has been cancelled
Mac Studio Install Matrix CI / Install + load (macos-14) (push) Has been cancelled
Mac Studio Install Matrix CI / Install + load (macos-15) (push) Has been cancelled
Mac Studio Install Matrix CI / Install + load (macos-26) (push) Has been cancelled
Mac Studio Install Matrix CI / Install + load (macos-15-intel) (push) Has been cancelled
Mac Studio API CI / Studio API & Auth Tests (push) Has been cancelled
Mac Studio Install Matrix CI / Install + load (macos-26-intel) (push) Has been cancelled
Mac Studio UI CI / Chat UI Tests (push) Has been cancelled
Studio Tauri CI / Tauri Linux debug build (no codesign) (push) Has been cancelled
Mac Studio Update CI / Studio Updating Tests (push) Has been cancelled
Studio UI CI / Chat UI Tests (push) Has been cancelled
Windows Studio API CI / Studio API & Auth Tests (push) Has been cancelled
Windows Studio UI CI / Chat UI Tests (push) Has been cancelled
Studio Update CI / Studio Updating Tests (push) Has been cancelled
Core / Core (HF=default + TRL=default) (push) Has been cancelled
Core / Core (HF=4.57.6 + TRL<1) (push) Has been cancelled
Core / Core (HF=latest + TRL=latest) (push) Has been cancelled
Core / llama.cpp build + smoke (push) Has been cancelled
Windows Studio GGUF CI / OpenAI, Anthropic API tests (push) Has been cancelled
Windows Studio GGUF CI / Tool calling Tests (push) Has been cancelled
Windows Studio GGUF CI / JSON, images (push) Has been cancelled
Windows Studio GGUF CI / Studio install + inference without Visual Studio (push) Has been cancelled
Studio export capability / capability (macos-latest) (push) Has been cancelled
Studio export capability / capability (ubuntu-latest) (push) Has been cancelled
Studio export capability / capability (windows-latest) (push) Has been cancelled
Cross-platform parity / parity (macos-latest) (push) Has been cancelled
Cross-platform parity / parity (windows-latest) (push) Has been cancelled
Scorecard supply-chain security / Scorecard analysis (push) Has been cancelled
Studio load-orchestrator CI / test (push) Has been cancelled
109 lines
4.1 KiB
Bash
Executable File
109 lines
4.1 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
# Copyright 2026-present the Unsloth AI Inc. team. All rights reserved.
|
|
#
|
|
# Install one coding-agent CLI for the Local Agent Guides CI. Isolated as
|
|
# failure class (b) "agent package install failed": npm/curl flakiness here
|
|
# is the single biggest source of false reds, so installs retry with
|
|
# backoff and the only ::error:: this script can emit is class (b). The
|
|
# install recipes mirror the install_hint strings in
|
|
# unsloth_cli/commands/start.py at HEAD.
|
|
#
|
|
# Usage: agent-guides-install.sh <agent>
|
|
# agent in: claude codex hermes openclaw opencode pi
|
|
set -uo pipefail
|
|
|
|
AGENT="${1:?usage: agent-guides-install.sh <agent>}"
|
|
mkdir -p logs
|
|
LOG="logs/install-${AGENT}.log"
|
|
|
|
install_fail() {
|
|
echo "::error::[agent install failed] agent=${AGENT}: $* (class (b): the agent CLI did not install; not a server or guide problem)." >&2
|
|
echo "---- tail $LOG ----" >&2
|
|
tail -60 "$LOG" 2>/dev/null || true
|
|
exit 1
|
|
}
|
|
|
|
# npm registry flakiness is common in CI; retry 3x with linear backoff.
|
|
# Extra npm flags may precede the package (e.g. npm_retry --ignore-scripts pkg).
|
|
npm_retry() {
|
|
local i
|
|
for i in 1 2 3; do
|
|
if npm install -g "$@" >> "$LOG" 2>&1; then
|
|
return 0
|
|
fi
|
|
echo "[install] npm install -g $* attempt $i failed; backing off $((i * 10))s" | tee -a "$LOG"
|
|
sleep "$((i * 10))"
|
|
done
|
|
return 1
|
|
}
|
|
|
|
# curl|bash installers, retried at the curl layer. We download to a temp file
|
|
# first and only execute on a fully successful fetch, so a truncated download
|
|
# (network hiccup mid-stream) can never run a half-written installer.
|
|
curl_bash() {
|
|
local url="$1"; shift
|
|
local i tmp
|
|
tmp="$(mktemp)"
|
|
for i in 1 2 3; do
|
|
if curl -fsSL --retry 3 --retry-delay 5 "$url" -o "$tmp" 2>>"$LOG" \
|
|
&& bash "$tmp" "$@" >> "$LOG" 2>&1; then
|
|
rm -f "$tmp"
|
|
return 0
|
|
fi
|
|
echo "[install] curl|bash $url attempt $i failed; backing off $((i * 10))s" | tee -a "$LOG"
|
|
sleep "$((i * 10))"
|
|
done
|
|
rm -f "$tmp"
|
|
return 1
|
|
}
|
|
|
|
echo "[install] agent=$AGENT (log=$LOG)"
|
|
case "$AGENT" in
|
|
claude)
|
|
# start.py install_hint: curl -fsSL https://claude.ai/install.sh | bash
|
|
curl_bash "https://claude.ai/install.sh" || install_fail "claude installer failed"
|
|
# The installer drops the binary under ~/.local/bin.
|
|
echo "$HOME/.local/bin" >> "$GITHUB_PATH"
|
|
;;
|
|
codex)
|
|
# start.py install_hint: npm install -g @openai/codex
|
|
npm_retry "@openai/codex" || install_fail "npm install -g @openai/codex failed"
|
|
;;
|
|
opencode)
|
|
# start.py install_hint: npm install -g opencode-ai
|
|
npm_retry "opencode-ai" || install_fail "npm install -g opencode-ai failed"
|
|
;;
|
|
openclaw)
|
|
# start.py install_hint: curl -fsSL https://openclaw.ai/install.sh | bash
|
|
# npm is the more deterministic path in CI and matches the agent's docs;
|
|
# fall back to the start.py curl installer if the npm tag is missing.
|
|
if ! npm_retry "openclaw@latest"; then
|
|
curl_bash "https://openclaw.ai/install.sh" || install_fail "openclaw install failed (npm + curl)"
|
|
echo "$HOME/.local/bin" >> "$GITHUB_PATH"
|
|
fi
|
|
;;
|
|
hermes)
|
|
# start.py install_hint:
|
|
# curl -fsSL .../NousResearch/hermes-agent/main/scripts/install.sh | bash
|
|
curl_bash "https://raw.githubusercontent.com/NousResearch/hermes-agent/main/scripts/install.sh" \
|
|
--non-interactive --skip-setup --skip-browser --no-skills \
|
|
|| install_fail "hermes installer failed"
|
|
echo "$HOME/.local/bin" >> "$GITHUB_PATH"
|
|
;;
|
|
pi)
|
|
# start.py install_hint: npm install -g --ignore-scripts @earendil-works/pi-coding-agent
|
|
# (--ignore-scripts matches Pi's documented recipe; exercising the exact hint
|
|
# catches guide drift). The CLI moved from the now-deprecated @mariozechner
|
|
# scope to @earendil-works (the old scope is frozen, so installing it would
|
|
# test a stale Pi against the API).
|
|
npm_retry --ignore-scripts "@earendil-works/pi-coding-agent" \
|
|
|| install_fail "npm install -g --ignore-scripts @earendil-works/pi-coding-agent failed"
|
|
;;
|
|
*)
|
|
install_fail "unknown agent '$AGENT'"
|
|
;;
|
|
esac
|
|
|
|
echo "[install] OK for $AGENT"
|