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

推荐订阅源

The Cloudflare Blog
U
Unit 42
F
Fortinet All Blogs
雷峰网
雷峰网
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
月光博客
月光博客
Y
Y Combinator Blog
罗磊的独立博客
V
Visual Studio Blog
大猫的无限游戏
大猫的无限游戏
J
Java Code Geeks
量子位
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
爱范儿
爱范儿
B
Blog RSS Feed
aimingoo的专栏
aimingoo的专栏
有赞技术团队
有赞技术团队
T
Tailwind CSS Blog
Microsoft Security Blog
Microsoft Security Blog
L
LangChain Blog
I
InfoQ
博客园 - 叶小钗
博客园 - 聂微东
Last Week in AI
Last Week in AI

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
test: split bundled Docker aggregate shards · openclaw/op...
steipete · 2026-04-25 · via Recent Commits to openclaw:main

@@ -16,6 +16,7 @@ RUN_SETUP_ENTRY_SCENARIO="${OPENCLAW_BUNDLED_CHANNEL_SETUP_ENTRY_SCENARIO:-1}"

1616

RUN_LOAD_FAILURE_SCENARIO="${OPENCLAW_BUNDLED_CHANNEL_LOAD_FAILURE_SCENARIO:-1}"

1717

RUN_DISABLED_CONFIG_SCENARIO="${OPENCLAW_BUNDLED_CHANNEL_DISABLED_CONFIG_SCENARIO:-1}"

1818

CHANNEL_ONLY="${OPENCLAW_BUNDLED_CHANNEL_ONLY:-}"

19+

DOCKER_RUN_TIMEOUT="${OPENCLAW_BUNDLED_CHANNEL_DOCKER_RUN_TIMEOUT:-900s}"

19202021

docker_e2e_build_or_reuse "$IMAGE_NAME" bundled-channel-deps "$ROOT_DIR/scripts/e2e/Dockerfile" "$ROOT_DIR" "$DOCKER_TARGET"

2122

@@ -60,7 +61,7 @@ run_channel_scenario() {

6061

run_log="$(mktemp "${TMPDIR:-/tmp}/openclaw-bundled-channel-deps-$channel.XXXXXX")"

61626263

echo "Running bundled $channel runtime deps Docker E2E..."

63-

if ! docker run --rm \

64+

if ! timeout "$DOCKER_RUN_TIMEOUT" docker run --rm \

6465

-e COREPACK_ENABLE_DOWNLOAD_PROMPT=0 \

6566

-e OPENCLAW_CHANNEL_UNDER_TEST="$channel" \

6667

-e OPENCLAW_DEP_SENTINEL="$dep_sentinel" \

@@ -447,7 +448,7 @@ run_root_owned_global_scenario() {

447448

run_log="$(mktemp "${TMPDIR:-/tmp}/openclaw-bundled-channel-root-owned.XXXXXX")"

448449449450

echo "Running bundled channel root-owned global install Docker E2E..."

450-

if ! docker run --rm --user root \

451+

if ! timeout "$DOCKER_RUN_TIMEOUT" docker run --rm --user root \

451452

-e COREPACK_ENABLE_DOWNLOAD_PROMPT=0 \

452453

"${PACKAGE_DOCKER_ARGS[@]}" \

453454

-i "$IMAGE_NAME" bash -s >"$run_log" 2>&1 <<'EOF'

@@ -623,7 +624,7 @@ run_setup_entry_scenario() {

623624

run_log="$(mktemp "${TMPDIR:-/tmp}/openclaw-bundled-channel-setup-entry.XXXXXX")"

624625625626

echo "Running bundled channel setup-entry runtime deps Docker E2E..."

626-

if ! docker run --rm \

627+

if ! timeout "$DOCKER_RUN_TIMEOUT" docker run --rm \

627628

-e COREPACK_ENABLE_DOWNLOAD_PROMPT=0 \

628629

"${PACKAGE_DOCKER_ARGS[@]}" \

629630

-i "$IMAGE_NAME" bash -s >"$run_log" 2>&1 <<'EOF'

@@ -874,7 +875,7 @@ run_disabled_config_scenario() {

874875

run_log="$(mktemp "${TMPDIR:-/tmp}/openclaw-bundled-channel-disabled-config.XXXXXX")"

875876876877

echo "Running bundled channel disabled-config runtime deps Docker E2E..."

877-

if ! docker run --rm \

878+

if ! timeout "$DOCKER_RUN_TIMEOUT" docker run --rm \

878879

-e COREPACK_ENABLE_DOWNLOAD_PROMPT=0 \

879880

"${PACKAGE_DOCKER_ARGS[@]}" \

880881

-i "$IMAGE_NAME" bash -s >"$run_log" 2>&1 <<'EOF'

@@ -1039,7 +1040,7 @@ run_update_scenario() {

10391040

run_log="$(mktemp "${TMPDIR:-/tmp}/openclaw-bundled-channel-update.XXXXXX")"

1040104110411042

echo "Running bundled channel runtime deps Docker update E2E..."

1042-

if ! docker run --rm \

1043+

if ! timeout "$DOCKER_RUN_TIMEOUT" docker run --rm \

10431044

-e COREPACK_ENABLE_DOWNLOAD_PROMPT=0 \

10441045

-e OPENCLAW_BUNDLED_CHANNEL_UPDATE_BASELINE_VERSION="$UPDATE_BASELINE_VERSION" \

10451046

"${PACKAGE_DOCKER_ARGS[@]}" \

@@ -1386,7 +1387,7 @@ run_load_failure_scenario() {

13861387

run_log="$(mktemp "${TMPDIR:-/tmp}/openclaw-bundled-channel-load-failure.XXXXXX")"

1387138813881389

echo "Running bundled channel load-failure isolation Docker E2E..."

1389-

if ! docker run --rm \

1390+

if ! timeout "$DOCKER_RUN_TIMEOUT" docker run --rm \

13901391

-e COREPACK_ENABLE_DOWNLOAD_PROMPT=0 \

13911392

"${PACKAGE_DOCKER_ARGS[@]}" \

13921393

-i "$IMAGE_NAME" bash -s >"$run_log" 2>&1 <<'EOF'