惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
H
Help Net Security
云风的 BLOG
云风的 BLOG
Apple Machine Learning Research
Apple Machine Learning Research
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Hugging Face - Blog
Hugging Face - Blog
博客园_首页
D
Docker
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Blog — PlanetScale
Blog — PlanetScale
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
GbyAI
GbyAI
博客园 - Franky
B
Blog RSS Feed
Stack Overflow Blog
Stack Overflow Blog
L
LangChain Blog
量子位
V
Visual Studio Blog
Y
Y Combinator Blog
小众软件
小众软件
N
Netflix TechBlog - Medium
博客园 - 三生石上(FineUI控件)
Microsoft Security Blog
Microsoft Security Blog
雷峰网
雷峰网

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
fix: keep npm telegram e2e on package runtime · openclaw/...
steipete · 2026-05-08 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -195,6 +195,10 @@ inside every shard.

195195

- Installs an OpenClaw package candidate in Docker, runs installed-package

196196

onboarding, configures Telegram through the installed CLI, then reuses the

197197

live Telegram QA lane with that installed package as the SUT Gateway.

198+

- The wrapper mounts only the `qa-lab` harness source from the checkout; the

199+

installed package owns `dist`, `openclaw/plugin-sdk`, and bundled plugin

200+

runtime so the lane does not mix current checkout plugins into the package

201+

under test.

198202

- Defaults to `OPENCLAW_NPM_TELEGRAM_PACKAGE_SPEC=openclaw@beta`; set

199203

`OPENCLAW_NPM_TELEGRAM_PACKAGE_TGZ=/path/to/openclaw-current.tgz` or

200204

`OPENCLAW_CURRENT_PACKAGE_TGZ` to test a resolved local tarball instead of

Original file line numberDiff line numberDiff line change

@@ -243,11 +243,12 @@ command -v openclaw

243243

openclaw --version

244244

EOF

245245
246-

# Mount only test harness/plugin QA sources; the SUT itself is the installed package candidate.

246+

# Mount only QA harness source; the SUT itself, including bundled plugin runtime,

247+

# is the installed package candidate.

247248

run_logged docker_e2e_run_with_harness \

248249

"${docker_env[@]}" \

249250

-v "$ROOT_DIR/.artifacts:/app/.artifacts" \

250-

-v "$ROOT_DIR/extensions:/app/extensions:ro" \

251+

-v "$ROOT_DIR/extensions/qa-lab:/app/extensions/qa-lab:ro" \

251252

-v "$npm_prefix_host:/npm-global" \

252253

-i "$IMAGE_NAME" bash -s <<'EOF'

253254

set -euo pipefail

@@ -278,17 +279,12 @@ openclaw --version

278279

mkdir -p /app/node_modules

279280

openclaw_package_dir="/npm-global/lib/node_modules/openclaw"

280281

# The mounted QA harness imports openclaw/plugin-sdk and package dependencies;

281-

# point those imports at the installed package without copying source into the test image.

282+

# point those imports at the installed package without copying source plugins into the test image.

282283

rm -rf /app/node_modules/openclaw

283284

ln -sfnT "$openclaw_package_dir" /app/node_modules/openclaw

284285

rm -rf /app/dist

285286

ln -sfnT "$openclaw_package_dir/dist" /app/dist

286287

cp "$openclaw_package_dir/package.json" /app/package.json

287-

rm -rf "$openclaw_package_dir/extensions"

288-

ln -sfnT /app/extensions "$openclaw_package_dir/extensions"

289-

mkdir -p /app/node_modules/@openclaw

290-

rm -rf /app/node_modules/@openclaw/qa-channel

291-

ln -sfnT /app/extensions/qa-channel /app/node_modules/@openclaw/qa-channel

292288

node scripts/e2e/lib/npm-telegram-live/prepare-package.mjs \

293289

/app/package.json \

294290

/app/node_modules/openclaw/package.json