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

推荐订阅源

IT之家
IT之家
Y
Y Combinator Blog
月光博客
月光博客
Blog — PlanetScale
Blog — PlanetScale
GbyAI
GbyAI
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园 - 三生石上(FineUI控件)
S
SegmentFault 最新的问题
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
美团技术团队
雷峰网
雷峰网
酷 壳 – CoolShell
酷 壳 – CoolShell
Last Week in AI
Last Week in AI
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
有赞技术团队
有赞技术团队
博客园 - 司徒正美
V
Visual Studio Blog
小众软件
小众软件
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
T
Tailwind CSS Blog
Apple Machine Learning Research
Apple Machine Learning Research
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
A
About on SuperTechFans
The Cloudflare 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(ci): time packaged fresh release phases · openclaw/op...
vincentkoc · 2026-05-22 · via Recent Commits to openclaw:main

@@ -786,78 +786,90 @@ async function runFreshLane(params) {

786786

const cleanup = [];

787787

try {

788788

const env = buildLaneEnv(lane, params.providerConfig, params.providerSecretValue);

789-

logLanePhase(lane, "install-candidate");

790-

await installTarballPackage({

791-

lane,

792-

env,

793-

tgzPath: params.build.candidateTgz,

794-

logPath: join(params.logsDir, "fresh-install.log"),

795-

restoreBundledPluginPostinstall: false,

789+

await runTimedLanePhase(lane, "install-candidate", async () => {

790+

await installTarballPackage({

791+

lane,

792+

env,

793+

tgzPath: params.build.candidateTgz,

794+

logPath: join(params.logsDir, "fresh-install.log"),

795+

restoreBundledPluginPostinstall: false,

796+

});

796797

});

797798

const installed = readInstalledMetadata(lane.prefixDir);

798799

verifyInstalledCandidate(installed, params.build);

799-

logLanePhase(lane, "run-bundled-plugin-postinstall");

800-

await runBundledPluginPostinstall({

801-

lane,

802-

env,

803-

logPath: join(params.logsDir, "fresh-install.log"),

800+

await runTimedLanePhase(lane, "run-bundled-plugin-postinstall", async () => {

801+

await runBundledPluginPostinstall({

802+

lane,

803+

env,

804+

logPath: join(params.logsDir, "fresh-install.log"),

805+

});

804806

});

805807806808

let browserOverrideImportStatus = "skipped";

807809

if (shouldRunWindowsInstalledBrowserOverrideImportSmoke()) {

808-

logLanePhase(lane, "windows-browser-override-import");

809-

browserOverrideImportStatus = await runInstalledBrowserOverrideImportSmoke({

810+

browserOverrideImportStatus = await runTimedLanePhase(

810811

lane,

811-

env,

812-

prefixDir: lane.prefixDir,

813-

logPath: join(params.logsDir, "fresh-windows-browser-override-import.log"),

814-

});

812+

"windows-browser-override-import",

813+

async () =>

814+

runInstalledBrowserOverrideImportSmoke({

815+

lane,

816+

env,

817+

prefixDir: lane.prefixDir,

818+

logPath: join(params.logsDir, "fresh-windows-browser-override-import.log"),

819+

}),

820+

);

815821

}

816822817-

logLanePhase(lane, "onboard");

818-

await runOnboard({

819-

lane,

820-

env,

821-

providerConfig: params.providerConfig,

822-

logPath: join(params.logsDir, "fresh-onboard.log"),

823+

await runTimedLanePhase(lane, "onboard", async () => {

824+

await runOnboard({

825+

lane,

826+

env,

827+

providerConfig: params.providerConfig,

828+

logPath: join(params.logsDir, "fresh-onboard.log"),

829+

});

823830

});

824831825-

logLanePhase(lane, "models-set");

826-

await runModelsSet({

827-

lane,

828-

env,

829-

providerConfig: params.providerConfig,

830-

logPath: join(params.logsDir, "fresh-models-set.log"),

832+

await runTimedLanePhase(lane, "models-set", async () => {

833+

await runModelsSet({

834+

lane,

835+

env,

836+

providerConfig: params.providerConfig,

837+

logPath: join(params.logsDir, "fresh-models-set.log"),

838+

});

831839

});

832840833-

logLanePhase(lane, "start-gateway");

834-

const gateway = await startGateway({

835-

lane,

836-

env,

837-

logPath: join(params.logsDir, "fresh-gateway.log"),

838-

});

841+

const gateway = await runTimedLanePhase(lane, "start-gateway", async () =>

842+

startGateway({

843+

lane,

844+

env,

845+

logPath: join(params.logsDir, "fresh-gateway.log"),

846+

}),

847+

);

839848

cleanup.push(() => stopGateway(gateway));

840849841-

logLanePhase(lane, "wait-gateway");

842-

await waitForGateway({

843-

lane,

844-

env,

845-

logPath: join(params.logsDir, "fresh-gateway-status.log"),

850+

await runTimedLanePhase(lane, "wait-gateway", async () => {

851+

await waitForGateway({

852+

lane,

853+

env,

854+

logPath: join(params.logsDir, "fresh-gateway-status.log"),

855+

});

846856

});

847857848-

logLanePhase(lane, "dashboard");

849-

await runDashboardSmoke({

850-

lane,

851-

logPath: join(params.logsDir, "fresh-dashboard.log"),

858+

await runTimedLanePhase(lane, "dashboard", async () => {

859+

await runDashboardSmoke({

860+

lane,

861+

logPath: join(params.logsDir, "fresh-dashboard.log"),

862+

});

852863

});

853864854-

logLanePhase(lane, "agent-turn");

855-

const agent = await runAgentTurn({

856-

lane,

857-

env,

858-

label: "fresh",

859-

logPath: join(params.logsDir, "fresh-agent.log"),

860-

});

865+

const agent = await runTimedLanePhase(lane, "agent-turn", async () =>

866+

runAgentTurn({

867+

lane,

868+

env,

869+

label: "fresh",

870+

logPath: join(params.logsDir, "fresh-agent.log"),

871+

}),

872+

);

861873862874

return {

863875

status: "pass",

@@ -867,6 +879,7 @@ async function runFreshLane(params) {

867879

gatewayPort: lane.gatewayPort,

868880

browserOverrideImportStatus,

869881

agentOutput: trimForSummary(agent.stdout),

882+

phaseTimings: lane.phaseTimings,

870883

};

871884

} finally {

872885

await runCleanup(cleanup);