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

推荐订阅源

J
Java Code Geeks
IT之家
IT之家
爱范儿
爱范儿
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
博客园_首页
Blog — PlanetScale
Blog — PlanetScale
V
Visual Studio Blog
云风的 BLOG
云风的 BLOG
MyScale Blog
MyScale Blog
阮一峰的网络日志
阮一峰的网络日志
Stack Overflow Blog
Stack Overflow Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
GbyAI
GbyAI
V
V2EX
N
Netflix TechBlog - Medium
Vercel News
Vercel News
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
T
The Blog of Author Tim Ferriss
量子位
博客园 - Franky
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 司徒正美
月光博客
月光博客
F
Fortinet All Blogs

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(e2e): harden docker all cleanup · openclaw/openclaw@7...
vincentkoc · 2026-06-01 · via Recent Commits to openclaw:main

@@ -3,7 +3,7 @@

33

// to bare/functional images, and runs lanes through weighted resource pools.

44

import { spawn } from "node:child_process";

55

import fs from "node:fs";

6-

import { mkdir, readFile } from "node:fs/promises";

6+

import { mkdir, open, readFile } from "node:fs/promises";

77

import path from "node:path";

88

import { fileURLToPath } from "node:url";

99

import {

@@ -37,6 +37,7 @@ const DEFAULT_LANE_START_STAGGER_MS = 2_000;

3737

const DEFAULT_STATUS_INTERVAL_MS = 30_000;

3838

const DEFAULT_PREFLIGHT_RUN_TIMEOUT_MS = 60_000;

3939

export const SHELL_CAPTURE_MAX_CHARS = 1024 * 1024;

40+

export const LOG_TAIL_MAX_BYTES = 1024 * 1024;

4041

const DEFAULT_TIMINGS_FILE = path.join(ROOT_DIR, ".artifacts/docker-tests/lane-timings.json");

4142

const DEFAULT_GITHUB_WORKFLOW = "openclaw-live-and-e2e-checks-reusable.yml";

4243

const IS_MAIN = process.argv[1]

@@ -533,7 +534,7 @@ export function dockerPreflightContainerNames(raw) {

533534

);

534535

}

535536536-

function runShellCommand({ command, env, label, logFile, timeoutMs, noOutputTimeoutMs }) {

537+

export function runShellCommand({ command, env, label, logFile, timeoutMs, noOutputTimeoutMs }) {

537538

return new Promise((resolve) => {

538539

const pipeOutput = Boolean(logFile || noOutputTimeoutMs > 0);

539540

const child = spawn("bash", ["-c", command], {

@@ -609,6 +610,9 @@ function runShellCommand({ command, env, label, logFile, timeoutMs, noOutputTime

609610

if (noOutputTimer) {

610611

clearTimeout(noOutputTimer);

611612

}

613+

if (timedOut) {

614+

terminateChild(child, "SIGKILL");

615+

}

612616

if (killTimer) {

613617

clearTimeout(killTimer);

614618

}

@@ -635,7 +639,7 @@ export function appendBoundedShellCapture(current, chunk, maxChars = SHELL_CAPTU

635639

return { text: combined.slice(-maxChars), truncated: true };

636640

}

637641638-

function runShellCaptureCommand({ command, env, label, timeoutMs }) {

642+

export function runShellCaptureCommand({ command, env, label, timeoutMs }) {

639643

return new Promise((resolve) => {

640644

const child = spawn("bash", ["-c", command], {

641645

cwd: ROOT_DIR,

@@ -649,12 +653,14 @@ function runShellCaptureCommand({ command, env, label, timeoutMs }) {

649653

let stdoutTruncated = false;

650654

let stderrTruncated = false;

651655

let timedOut = false;

656+

let killTimer;

652657

const timeoutTimer =

653658

timeoutMs > 0

654659

? setTimeout(() => {

655660

timedOut = true;

656661

terminateChild(child, "SIGTERM");

657-

setTimeout(() => terminateChild(child, "SIGKILL"), 10_000).unref?.();

662+

killTimer = setTimeout(() => terminateChild(child, "SIGKILL"), 10_000);

663+

killTimer.unref?.();

658664

}, timeoutMs)

659665

: undefined;

660666

timeoutTimer?.unref?.();

@@ -672,6 +678,12 @@ function runShellCaptureCommand({ command, env, label, timeoutMs }) {

672678

if (timeoutTimer) {

673679

clearTimeout(timeoutTimer);

674680

}

681+

if (timedOut) {

682+

terminateChild(child, "SIGKILL");

683+

}

684+

if (killTimer) {

685+

clearTimeout(killTimer);

686+

}

675687

activeChildren.delete(child);

676688

const exitCode = typeof status === "number" ? status : signal ? 128 : 1;

677689

resolve({

@@ -1078,8 +1090,21 @@ async function runLanePool(poolLanes, baseEnv, logDir, parallelism, options) {

10781090

return { failures, results };

10791091

}

108010921081-

async function tailFile(file, lines) {

1082-

const content = await readFile(file, "utf8").catch(() => "");

1093+

export async function tailFile(file, lines, maxBytes = LOG_TAIL_MAX_BYTES) {

1094+

let handle;

1095+

let content;

1096+

try {

1097+

handle = await open(file, "r");

1098+

const stat = await handle.stat();

1099+

const bytesToRead = Math.min(Math.max(1, maxBytes), stat.size);

1100+

const buffer = Buffer.alloc(bytesToRead);

1101+

await handle.read(buffer, 0, bytesToRead, stat.size - bytesToRead);

1102+

content = buffer.toString("utf8");

1103+

} catch {

1104+

content = "";

1105+

} finally {

1106+

await handle?.close().catch(() => {});

1107+

}

10831108

const tail = content.split(/\r?\n/).slice(-lines).join("\n");

10841109

return tail.trimEnd();

10851110

}