Some checks failed
ClawSweeper Dispatch / dispatch (push) Has been cancelled
CodeQL / Security High (actions) (push) Has been cancelled
CodeQL / Security High (channel-runtime-boundary) (push) Has been cancelled
CodeQL / Security High (core-auth-secrets) (push) Has been cancelled
CodeQL / Security High (mcp-process-tool-boundary) (push) Has been cancelled
CodeQL / Security High (network-ssrf-boundary) (push) Has been cancelled
CodeQL / Security High (plugin-trust-boundary) (push) Has been cancelled
CodeQL / Security High (process-exec-boundary) (push) Has been cancelled
Docs Sync Publish Repo / sync-publish-repo (push) Has been cancelled
Docs / docs (push) Has been cancelled
OpenClaw Stable Main Closeout / Resolve stable release closeout inputs (push) Has been cancelled
OpenClaw Stable Main Closeout / Verify stable main closeout (push) Has been cancelled
Workflow Sanity / no-tabs (push) Has been cancelled
Workflow Sanity / actionlint (push) Has been cancelled
Workflow Sanity / generated-doc-baselines (push) Has been cancelled
CI / runner-admission (push) Has been cancelled
CI / preflight (push) Has been cancelled
CI / security-fast (push) Has been cancelled
CI / pnpm-store-warmup (push) Has been cancelled
CI / build-artifacts (push) Has been cancelled
CI / native-i18n (push) Has been cancelled
CI / ${{ matrix.check_name }} (push) Has been cancelled
CI / ${{ matrix.checkName }} (push) Has been cancelled
CI / checks-node-compat-node22 (push) Has been cancelled
CI / check-bundled-channel-config-metadata (push) Has been cancelled
CI / check-dependencies (push) Has been cancelled
CI / check-guards (push) Has been cancelled
CI / check-lint (push) Has been cancelled
CI / check-prod-types (push) Has been cancelled
CI / check-shrinkwrap (push) Has been cancelled
CI / check-test-types (push) Has been cancelled
CI / check-additional-boundaries-a (push) Has been cancelled
CI / check-additional-boundaries-bcd (push) Has been cancelled
CI / check-additional-extension-bundled (push) Has been cancelled
CI / check-additional-extension-channels (push) Has been cancelled
CI / check-additional-extension-package-boundary (push) Has been cancelled
CI / check-additional-runtime-topology-architecture (push) Has been cancelled
CI / check-session-accessor-boundary (push) Has been cancelled
CI / check-session-transcript-reader-boundary (push) Has been cancelled
CI / check-docs (push) Has been cancelled
CI / skills-python (push) Has been cancelled
CI / macos-swift (push) Has been cancelled
CI / ios-build (push) Has been cancelled
CI / ci-timings-summary (push) Has been cancelled
Native App Locale Refresh / Refresh native fa (push) Has been cancelled
Native App Locale Refresh / Refresh native fr (push) Has been cancelled
Native App Locale Refresh / Refresh native hi (push) Has been cancelled
Native App Locale Refresh / Refresh native id (push) Has been cancelled
Native App Locale Refresh / Refresh native it (push) Has been cancelled
Native App Locale Refresh / Refresh native ja-JP (push) Has been cancelled
Control UI Locale Refresh / plan (push) Has been cancelled
Control UI Locale Refresh / Refresh ${{ matrix.locale }} (push) Has been cancelled
Control UI Locale Refresh / Commit control UI locale refresh (push) Has been cancelled
Live Media Runner Image / Build live media runner image (push) Has been cancelled
Native App Locale Refresh / Refresh native ar (push) Has been cancelled
Native App Locale Refresh / Refresh native de (push) Has been cancelled
Native App Locale Refresh / Refresh native es (push) Has been cancelled
Native App Locale Refresh / Refresh native ko (push) Has been cancelled
Native App Locale Refresh / Refresh native nl (push) Has been cancelled
Native App Locale Refresh / Refresh native pl (push) Has been cancelled
Native App Locale Refresh / Refresh native pt-BR (push) Has been cancelled
Native App Locale Refresh / Refresh native ru (push) Has been cancelled
Native App Locale Refresh / Refresh native sv (push) Has been cancelled
Native App Locale Refresh / Refresh native th (push) Has been cancelled
Native App Locale Refresh / Refresh native tr (push) Has been cancelled
Native App Locale Refresh / Refresh native uk (push) Has been cancelled
Native App Locale Refresh / Refresh native vi (push) Has been cancelled
Native App Locale Refresh / Refresh native zh-CN (push) Has been cancelled
Native App Locale Refresh / Refresh native zh-TW (push) Has been cancelled
Native App Locale Refresh / Commit native locale refresh (push) Has been cancelled
Plugin Init Scaffold Validation / Validate provider scaffold (push) Has been cancelled
Plugin NPM Release / preview_plugins_npm (push) Has been cancelled
Plugin NPM Release / Validate release publish approval (push) Has been cancelled
Plugin NPM Release / preview_plugin_pack (push) Has been cancelled
Plugin NPM Release / publish_plugins_npm (push) Has been cancelled
Sandbox Common Smoke / sandbox-common-smoke (push) Has been cancelled
Website Installer Sync / static (push) Has been cancelled
Website Installer Sync / linux-docker (push) Has been cancelled
Website Installer Sync / macos-installer (push) Has been cancelled
Website Installer Sync / windows-installer (push) Has been cancelled
Website Installer Sync / sync-website (push) Has been cancelled
Adolf is a fork/vendored clone of github.com/openclaw/openclaw (v2026.6.11), free to diverge. Tree copied sans upstream .git; upstream remote added for future syncs. Node pinned to 24 (.nvmrc); engines already require >=22.19. Preserves docs/ARCHITECTURE.md. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01LeqyaxJF2nbRXJtae2kNB2
219 lines
6.3 KiB
Bash
Executable File
219 lines
6.3 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/../.." && pwd)"
|
|
source "$ROOT_DIR/scripts/lib/docker-e2e-container.sh"
|
|
|
|
read_positive_int_env() {
|
|
local name="${1:?missing environment variable name}"
|
|
local fallback="${2:?missing fallback value}"
|
|
local value="${!name-}"
|
|
if [ -z "${!name+x}" ]; then
|
|
value="$fallback"
|
|
fi
|
|
if [[ ! "$value" =~ ^[0-9]+$ ]] || (( 10#$value < 1 )); then
|
|
echo "invalid $name: $value" >&2
|
|
return 2
|
|
fi
|
|
printf "%s\n" "$((10#$value))"
|
|
}
|
|
|
|
BUN_BIN="${BUN_BIN:-bun}"
|
|
HOST_BUILD="${OPENCLAW_BUN_GLOBAL_SMOKE_HOST_BUILD:-1}"
|
|
DIST_IMAGE="${OPENCLAW_BUN_GLOBAL_SMOKE_DIST_IMAGE:-}"
|
|
PACKAGE_TGZ="${OPENCLAW_BUN_GLOBAL_SMOKE_PACKAGE_TGZ:-}"
|
|
COMMAND_TIMEOUT_MS="$(read_positive_int_env OPENCLAW_BUN_GLOBAL_SMOKE_TIMEOUT_MS 180000)"
|
|
DOCKER_COMMAND_TIMEOUT="${DOCKER_COMMAND_TIMEOUT:-${OPENCLAW_BUN_GLOBAL_SMOKE_DOCKER_COMMAND_TIMEOUT:-600s}}"
|
|
SMOKE_DIR=""
|
|
PACK_DIR=""
|
|
|
|
cleanup() {
|
|
if [ -n "${SMOKE_DIR:-}" ]; then
|
|
rm -rf "$SMOKE_DIR"
|
|
fi
|
|
if [ -n "${PACK_DIR:-}" ]; then
|
|
rm -rf "$PACK_DIR"
|
|
fi
|
|
}
|
|
|
|
trap cleanup EXIT
|
|
|
|
run_with_timeout() {
|
|
local timeout_ms="$1"
|
|
shift
|
|
node scripts/e2e/lib/bun-global-install/assertions.mjs run-with-timeout "$timeout_ms" "$@"
|
|
}
|
|
|
|
resolve_pack_tarball_path() {
|
|
local pack_json_file="$1"
|
|
local pack_dir="$2"
|
|
node -e '
|
|
const fs = require("node:fs");
|
|
const path = require("node:path");
|
|
const raw = fs.readFileSync(process.argv[1], "utf8") || "[]";
|
|
const parsed = JSON.parse(raw);
|
|
const last = Array.isArray(parsed) ? parsed.at(-1) : null;
|
|
const filename = typeof last?.filename === "string" ? last.filename.trim() : "";
|
|
if (
|
|
!filename.endsWith(".tgz") ||
|
|
filename.includes("\0") ||
|
|
filename !== path.basename(filename) ||
|
|
filename !== path.win32.basename(filename)
|
|
) {
|
|
console.error(`ERROR: npm pack reported unsafe tarball filename ${JSON.stringify(filename)}`);
|
|
process.exit(1);
|
|
}
|
|
process.stdout.write(path.resolve(process.argv[2], filename));
|
|
' "$pack_json_file" "$pack_dir"
|
|
}
|
|
|
|
restore_dist_from_image() {
|
|
local image="$1"
|
|
local backup_dir=""
|
|
local container_id=""
|
|
local swapped=0
|
|
local temp_dir=""
|
|
|
|
cleanup_restore_dist() {
|
|
if [ -n "$container_id" ]; then
|
|
docker_e2e_docker_cmd rm -f "$container_id" >/dev/null 2>&1 || true
|
|
fi
|
|
if [ "$swapped" != "1" ] && [ -n "$backup_dir" ] && [ -d "$backup_dir" ]; then
|
|
rm -rf "$ROOT_DIR/dist" >/dev/null 2>&1 || true
|
|
if [ ! -e "$ROOT_DIR/dist" ] && mv "$backup_dir" "$ROOT_DIR/dist" >/dev/null 2>&1; then
|
|
backup_dir=""
|
|
fi
|
|
fi
|
|
if [ -n "$temp_dir" ]; then
|
|
rm -rf "$temp_dir"
|
|
fi
|
|
if [ "$swapped" = "1" ] && [ -n "$backup_dir" ]; then
|
|
rm -rf "$backup_dir"
|
|
fi
|
|
}
|
|
|
|
echo "==> Reuse dist/ from Docker image: $image"
|
|
if ! container_id="$(docker_e2e_docker_cmd create "$image")"; then
|
|
cleanup_restore_dist
|
|
return 1
|
|
fi
|
|
if ! temp_dir="$(mktemp -d "$ROOT_DIR/.bun-dist.XXXXXX")"; then
|
|
cleanup_restore_dist
|
|
return 1
|
|
fi
|
|
if ! docker_e2e_docker_cmd cp "${container_id}:/app/dist" "$temp_dir/dist"; then
|
|
cleanup_restore_dist
|
|
return 1
|
|
fi
|
|
if [ -e "$ROOT_DIR/dist" ]; then
|
|
if ! backup_dir="$(mktemp -d "$ROOT_DIR/.dist-backup.XXXXXX")"; then
|
|
cleanup_restore_dist
|
|
return 1
|
|
fi
|
|
if ! rmdir "$backup_dir"; then
|
|
cleanup_restore_dist
|
|
return 1
|
|
fi
|
|
if ! mv "$ROOT_DIR/dist" "$backup_dir"; then
|
|
cleanup_restore_dist
|
|
return 1
|
|
fi
|
|
fi
|
|
if ! mv "$temp_dir/dist" "$ROOT_DIR/dist"; then
|
|
cleanup_restore_dist
|
|
return 1
|
|
fi
|
|
swapped=1
|
|
cleanup_restore_dist
|
|
}
|
|
|
|
resolve_package_tgz() {
|
|
if [ -n "$PACKAGE_TGZ" ]; then
|
|
if [ ! -f "$PACKAGE_TGZ" ]; then
|
|
echo "OPENCLAW_BUN_GLOBAL_SMOKE_PACKAGE_TGZ does not exist: $PACKAGE_TGZ" >&2
|
|
exit 1
|
|
fi
|
|
PACKAGE_TGZ="$(cd "$(dirname "$PACKAGE_TGZ")" && pwd)/$(basename "$PACKAGE_TGZ")"
|
|
return 0
|
|
fi
|
|
|
|
if [ -n "$DIST_IMAGE" ]; then
|
|
restore_dist_from_image "$DIST_IMAGE"
|
|
elif [ "$HOST_BUILD" != "0" ]; then
|
|
echo "==> Build host package artifacts"
|
|
pnpm build
|
|
else
|
|
echo "==> Skipping host build (OPENCLAW_BUN_GLOBAL_SMOKE_HOST_BUILD=0)"
|
|
fi
|
|
|
|
if [ ! -d "$ROOT_DIR/dist" ]; then
|
|
echo "dist/ is missing; run pnpm build or set OPENCLAW_BUN_GLOBAL_SMOKE_DIST_IMAGE" >&2
|
|
exit 1
|
|
fi
|
|
|
|
echo "==> Write package inventory"
|
|
node --import tsx scripts/write-package-dist-inventory.ts
|
|
|
|
local pack_json_file
|
|
PACK_DIR="$(mktemp -d "${TMPDIR:-/tmp}/openclaw-bun-pack.XXXXXX")"
|
|
pack_json_file="$PACK_DIR/pack.json"
|
|
|
|
echo "==> Pack OpenClaw tarball"
|
|
npm pack --ignore-scripts --json --pack-destination "$PACK_DIR" >"$pack_json_file"
|
|
PACKAGE_TGZ="$(resolve_pack_tarball_path "$pack_json_file" "$PACK_DIR")"
|
|
if [ -z "$PACKAGE_TGZ" ] || [ ! -f "$PACKAGE_TGZ" ]; then
|
|
echo "missing packed OpenClaw tarball" >&2
|
|
exit 1
|
|
fi
|
|
}
|
|
|
|
main() {
|
|
cd "$ROOT_DIR"
|
|
|
|
if ! command -v "$BUN_BIN" >/dev/null 2>&1; then
|
|
echo "Bun is required for bun global install smoke; set BUN_BIN or install bun." >&2
|
|
exit 1
|
|
fi
|
|
|
|
resolve_package_tgz
|
|
|
|
local bun_path
|
|
local openclaw_bin
|
|
bun_path="$(command -v "$BUN_BIN")"
|
|
SMOKE_DIR="$(mktemp -d "${TMPDIR:-/tmp}/openclaw-bun-global.XXXXXX")"
|
|
|
|
export HOME="$SMOKE_DIR/home"
|
|
export BUN_INSTALL="$HOME/.bun"
|
|
export XDG_CACHE_HOME="$SMOKE_DIR/cache"
|
|
export OPENCLAW_NO_ONBOARD=1
|
|
export OPENCLAW_DISABLE_UPDATE_CHECK=1
|
|
export NO_COLOR=1
|
|
mkdir -p "$HOME" "$BUN_INSTALL/bin" "$XDG_CACHE_HOME"
|
|
export PATH="$BUN_INSTALL/bin:$(dirname "$(command -v node)"):$PATH"
|
|
|
|
echo "==> Bun version"
|
|
"$bun_path" --version
|
|
|
|
echo "==> Bun global install packed OpenClaw"
|
|
"$bun_path" install -g "$PACKAGE_TGZ" --no-progress
|
|
|
|
openclaw_bin="$BUN_INSTALL/bin/openclaw"
|
|
if [ ! -x "$openclaw_bin" ]; then
|
|
openclaw_bin="$(command -v openclaw || true)"
|
|
fi
|
|
if [ -z "$openclaw_bin" ] || [ ! -x "$openclaw_bin" ]; then
|
|
echo "Bun global install did not create an executable openclaw binary" >&2
|
|
exit 1
|
|
fi
|
|
|
|
echo "==> OpenClaw version through Bun global install"
|
|
run_with_timeout "$COMMAND_TIMEOUT_MS" "$openclaw_bin" --version
|
|
|
|
echo "==> OpenClaw image providers through Bun global install"
|
|
local providers_json
|
|
providers_json="$(run_with_timeout "$COMMAND_TIMEOUT_MS" "$openclaw_bin" infer image providers --json)"
|
|
OPENCLAW_IMAGE_PROVIDERS_JSON="$providers_json" node scripts/e2e/lib/bun-global-install/assertions.mjs assert-image-providers
|
|
}
|
|
|
|
main "$@"
|