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

推荐订阅源

Vercel News
Vercel News
博客园 - 司徒正美
C
Check Point Blog
G
Google Developers Blog
The GitHub Blog
The GitHub Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
有赞技术团队
有赞技术团队
P
Proofpoint News Feed
IT之家
IT之家
B
Blog
博客园_首页
量子位
MongoDB | Blog
MongoDB | Blog
博客园 - Franky
J
Java Code Geeks
H
Help Net Security
A
About on SuperTechFans
Apple Machine Learning Research
Apple Machine Learning Research
Jina AI
Jina AI
D
DataBreaches.Net
Y
Y Combinator Blog
大猫的无限游戏
大猫的无限游戏
云风的 BLOG
云风的 BLOG
Google DeepMind News
Google DeepMind News

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): bound docker package preparation · openclaw/ope...
vincentkoc · 2026-05-27 · via Recent Commits to openclaw:main

@@ -8,6 +8,48 @@ import path from "node:path";

88

import { fileURLToPath } from "node:url";

991010

const ROOT_DIR = path.resolve(path.dirname(fileURLToPath(import.meta.url)), "..");

11+

const DEFAULT_PACKAGE_BUILD_TIMEOUT_MS = 45 * 60 * 1000;

12+

const DEFAULT_PACKAGE_INVENTORY_TIMEOUT_MS = 5 * 60 * 1000;

13+

const DEFAULT_PACKAGE_PACK_TIMEOUT_MS = 5 * 60 * 1000;

14+

const DEFAULT_PACKAGE_TARBALL_CHECK_TIMEOUT_MS = 5 * 60 * 1000;

15+

const DEFAULT_TIMEOUT_KILL_AFTER_MS = 5_000;

16+

const ACTIVE_CHILD_KILLERS = new Set();

17+

const SIGNAL_EXIT_CODES = {

18+

SIGHUP: 129,

19+

SIGINT: 130,

20+

SIGTERM: 143,

21+

};

22+

let forwardedSignalExitCode;

23+24+

for (const signal of Object.keys(SIGNAL_EXIT_CODES)) {

25+

process.on(signal, () => {

26+

forwardedSignalExitCode ??= SIGNAL_EXIT_CODES[signal];

27+

if (ACTIVE_CHILD_KILLERS.size === 0) {

28+

process.exit(forwardedSignalExitCode);

29+

}

30+

for (const killChild of ACTIVE_CHILD_KILLERS) {

31+

killChild(signal);

32+

}

33+

setTimeout(() => {

34+

for (const killChild of ACTIVE_CHILD_KILLERS) {

35+

killChild("SIGKILL");

36+

}

37+

process.exit(forwardedSignalExitCode);

38+

}, DEFAULT_TIMEOUT_KILL_AFTER_MS);

39+

});

40+

}

41+42+

function resolveTimeoutMs(envName, defaultValue) {

43+

const raw = process.env[envName];

44+

if (raw === undefined || raw === "") {

45+

return defaultValue;

46+

}

47+

const parsed = Number(raw);

48+

if (!Number.isFinite(parsed) || parsed <= 0) {

49+

throw new Error(`${envName} must be a positive timeout in milliseconds`);

50+

}

51+

return Math.trunc(parsed);

52+

}

11531254

function parseArgs(argv) {

1355

const options = {

@@ -41,37 +83,78 @@ function parseArgs(argv) {

41834284

function run(command, args, cwd, options = {}) {

4385

return new Promise((resolve, reject) => {

86+

const useProcessGroup = process.platform !== "win32";

4487

const child = spawn(command, args, {

4588

cwd,

4689

stdio: ["ignore", "pipe", "pipe"],

4790

env: options.env ?? process.env,

91+

detached: useProcessGroup,

4892

});

4993

let timedOut = false;

50-

const timeout =

94+

let stdout = "";

95+

let settled = false;

96+

let timeout;

97+

const finish = (error, value = "") => {

98+

if (settled) {

99+

return;

100+

}

101+

settled = true;

102+

if (timeout) {

103+

clearTimeout(timeout);

104+

}

105+

ACTIVE_CHILD_KILLERS.delete(killChild);

106+

if (forwardedSignalExitCode !== undefined && ACTIVE_CHILD_KILLERS.size === 0) {

107+

process.exit(forwardedSignalExitCode);

108+

}

109+

if (error) {

110+

reject(error);

111+

return;

112+

}

113+

resolve(value);

114+

};

115+

const killChild = (signal) => {

116+

if (useProcessGroup && child.pid) {

117+

try {

118+

process.kill(-child.pid, signal);

119+

return;

120+

} catch {

121+

// The direct child may already have exited; fall back to child.kill.

122+

}

123+

}

124+

child.kill(signal);

125+

};

126+

ACTIVE_CHILD_KILLERS.add(killChild);

127+

timeout =

51128

options.timeoutMs === undefined

52129

? undefined

53130

: setTimeout(() => {

54131

timedOut = true;

55-

child.kill("SIGTERM");

56-

setTimeout(() => child.kill("SIGKILL"), 5_000).unref?.();

132+

killChild("SIGTERM");

133+

setTimeout(

134+

() => killChild("SIGKILL"),

135+

options.killAfterMs ?? DEFAULT_TIMEOUT_KILL_AFTER_MS,

136+

).unref?.();

57137

}, options.timeoutMs);

58138

timeout?.unref?.();

59-

child.stdout.pipe(process.stderr, { end: false });

139+

if (options.captureStdout) {

140+

child.stdout.on("data", (chunk) => {

141+

stdout += String(chunk);

142+

});

143+

} else {

144+

child.stdout.pipe(process.stderr, { end: false });

145+

}

60146

child.stderr.pipe(process.stderr, { end: false });

61-

child.on("error", reject);

147+

child.on("error", (error) => finish(error));

62148

child.on("close", (status, signal) => {

63-

if (timeout) {

64-

clearTimeout(timeout);

65-

}

66149

if (timedOut) {

67-

reject(new Error(`${command} ${args.join(" ")} timed out after ${options.timeoutMs}ms`));

150+

finish(new Error(`${command} ${args.join(" ")} timed out after ${options.timeoutMs}ms`));

68151

return;

69152

}

70153

if (status === 0) {

71-

resolve();

154+

finish(undefined, stdout);

72155

return;

73156

}

74-

reject(new Error(`${command} ${args.join(" ")} failed with ${status ?? signal}`));

157+

finish(new Error(`${command} ${args.join(" ")} failed with ${status ?? signal}`));

75158

});

76159

});

77160

}

@@ -90,30 +173,18 @@ export async function buildPackageArtifacts(sourceDir, options = {}) {

90173

console.error(`==> ${step.label}`);

91174

await runImpl(step.command, step.args, sourceDir, {

92175

env: { ...process.env, OPENCLAW_BUILD_ALL_NO_PNPM: "1" },

176+

timeoutMs: resolveTimeoutMs(

177+

"OPENCLAW_DOCKER_PACKAGE_BUILD_TIMEOUT_MS",

178+

DEFAULT_PACKAGE_BUILD_TIMEOUT_MS,

179+

),

93180

});

94181

}

95182

}

9618397-

async function runCapture(command, args, cwd) {

98-

return await new Promise((resolve, reject) => {

99-

const child = spawn(command, args, {

100-

cwd,

101-

stdio: ["ignore", "pipe", "pipe"],

102-

});

103-

let stdout = "";

104-

child.stdout.on("data", (chunk) => {

105-

stdout += String(chunk);

106-

});

107-

child.stderr.pipe(process.stderr, { end: false });

108-

child.on("error", reject);

109-

child.on("close", (status, signal) => {

110-

if (status === 0) {

111-

resolve(stdout);

112-

return;

113-

}

114-

reject(new Error(`${command} ${args.join(" ")} failed with ${status ?? signal}`));

115-

});

116-

});

184+

export const runCommandForTest = run;

185+186+

async function runCapture(command, args, cwd, options = {}) {

187+

return await run(command, args, cwd, { ...options, captureStdout: true });

117188

}

118189119190

async function newestOpenClawTarball(outputDir, packOutput) {

@@ -163,13 +234,25 @@ async function main() {

163234

"const { writePackageDistInventory } = await import('./src/infra/package-dist-inventory.ts'); await writePackageDistInventory(process.cwd());",

164235

],

165236

sourceDir,

237+

{

238+

timeoutMs: resolveTimeoutMs(

239+

"OPENCLAW_DOCKER_PACKAGE_INVENTORY_TIMEOUT_MS",

240+

DEFAULT_PACKAGE_INVENTORY_TIMEOUT_MS,

241+

),

242+

},

166243

);

167244168245

console.error("==> Packing OpenClaw package");

169246

const packOutput = await runCapture(

170247

"npm",

171248

["pack", "--silent", "--ignore-scripts", "--pack-destination", outputDir],

172249

sourceDir,

250+

{

251+

timeoutMs: resolveTimeoutMs(

252+

"OPENCLAW_DOCKER_PACKAGE_PACK_TIMEOUT_MS",

253+

DEFAULT_PACKAGE_PACK_TIMEOUT_MS,

254+

),

255+

},

173256

);

174257

let tarball = await newestOpenClawTarball(outputDir, packOutput);

175258

@@ -188,7 +271,12 @@ async function main() {

188271

"node",

189272

[path.join(ROOT_DIR, "scripts/check-openclaw-package-tarball.mjs"), tarball],

190273

sourceDir,

191-

{ timeoutMs: 5 * 60 * 1000 },

274+

{

275+

timeoutMs: resolveTimeoutMs(

276+

"OPENCLAW_DOCKER_PACKAGE_TARBALL_CHECK_TIMEOUT_MS",

277+

DEFAULT_PACKAGE_TARBALL_CHECK_TIMEOUT_MS,

278+

),

279+

},

192280

);

193281

console.error(

194282

`==> OpenClaw package tarball check finished in ${Math.round((Date.now() - checkStartedAt) / 1000)}s`,