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

推荐订阅源

量子位
D
Docker
月光博客
月光博客
MongoDB | Blog
MongoDB | Blog
Vercel News
Vercel News
美团技术团队
博客园 - 叶小钗
I
InfoQ
Jina AI
Jina AI
博客园 - 司徒正美
雷峰网
雷峰网
B
Blog
Y
Y Combinator Blog
A
About on SuperTechFans
WordPress大学
WordPress大学
酷 壳 – CoolShell
酷 壳 – CoolShell
大猫的无限游戏
大猫的无限游戏
Microsoft Security Blog
Microsoft Security Blog
Stack Overflow Blog
Stack Overflow Blog
腾讯CDC
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Recent Announcements
Recent Announcements
V
V2EX
N
Netflix TechBlog - Medium

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
ci: fix main test and boundary checks · openclaw/openclaw...
steipete · 2026-04-28 · via Recent Commits to openclaw:main

@@ -287,14 +287,15 @@ export async function main(argv = process.argv.slice(2)) {

287287

includeFile: isRelevantTypeInput,

288288

}) && !hasMissingOutput(QA_CHANNEL_DTS_REQUIRED_OUTPUTS);

289289290-

const pendingSteps = [];

290+

const prerequisiteSteps = [];

291+

const dependentSteps = [];

291292

if (mode === "all") {

292293

if (!rootDtsFresh) {

293294

removeIncrementalStateForMissingOutput({

294295

outputPaths: ROOT_DTS_REQUIRED_OUTPUTS,

295296

tsBuildInfoPath: "dist/plugin-sdk/.tsbuildinfo",

296297

});

297-

pendingSteps.push({

298+

prerequisiteSteps.push({

298299

label: "plugin-sdk boundary dts",

299300

args: [runTsgoScript, "-p", "tsconfig.plugin-sdk.dts.json", "--declaration", "true"],

300301

env: { OPENCLAW_TSGO_HEAVY_CHECK_LOCK_HELD: "1" },

@@ -310,7 +311,7 @@ export async function main(argv = process.argv.slice(2)) {

310311

outputPaths: PACKAGE_DTS_REQUIRED_OUTPUTS,

311312

tsBuildInfoPath: "packages/plugin-sdk/dist/.tsbuildinfo",

312313

});

313-

pendingSteps.push({

314+

prerequisiteSteps.push({

314315

label: "plugin-sdk package boundary dts",

315316

args: [runTsgoScript, "-p", "packages/plugin-sdk/tsconfig.json", "--declaration", "true"],

316317

env: { OPENCLAW_TSGO_HEAVY_CHECK_LOCK_HELD: "1" },

@@ -326,7 +327,7 @@ export async function main(argv = process.argv.slice(2)) {

326327

outputPaths: QA_CHANNEL_DTS_REQUIRED_OUTPUTS,

327328

tsBuildInfoPath: "dist/plugin-sdk/extensions/qa-channel/.tsbuildinfo",

328329

});

329-

pendingSteps.push({

330+

dependentSteps.push({

330331

label: "qa-channel boundary dts",

331332

args: [

332333

runTsgoScript,

@@ -354,16 +355,16 @@ export async function main(argv = process.argv.slice(2)) {

354355

}

355356

}

356357357-

if (pendingSteps.length > 0) {

358-

await runNodeSteps(pendingSteps);

359-

for (const step of pendingSteps) {

358+

if (prerequisiteSteps.length > 0) {

359+

await runNodeSteps(prerequisiteSteps);

360+

for (const step of prerequisiteSteps) {

360361

if (step.stampPath) {

361362

writeStampFile(step.stampPath);

362363

}

363364

}

364365

}

365366366-

if (mode === "all" && (!entryShimsFresh || pendingSteps.length > 0)) {

367+

if (mode === "all" && (!entryShimsFresh || prerequisiteSteps.length > 0)) {

367368

await runNodeStep(

368369

"plugin-sdk boundary root shims",

369370

["--import", "tsx", resolve(repoRoot, "scripts/write-plugin-sdk-entry-dts.ts")],

@@ -372,6 +373,15 @@ export async function main(argv = process.argv.slice(2)) {

372373

} else if (mode === "all") {

373374

process.stdout.write("[plugin-sdk boundary root shims] fresh; skipping\n");

374375

}

376+377+

if (dependentSteps.length > 0) {

378+

await runNodeSteps(dependentSteps);

379+

for (const step of dependentSteps) {

380+

if (step.stampPath) {

381+

writeStampFile(step.stampPath);

382+

}

383+

}

384+

}

375385

} catch (error) {

376386

process.stderr.write(`${error instanceof Error ? error.message : String(error)}\n`);

377387

process.exit(1);