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

推荐订阅源

Vercel News
Vercel News
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Apple Machine Learning Research
Apple Machine Learning Research
T
Tailwind CSS Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
人人都是产品经理
人人都是产品经理
V
V2EX
量子位
Last Week in AI
Last Week in AI
Jina AI
Jina AI
博客园 - 【当耐特】
爱范儿
爱范儿
宝玉的分享
宝玉的分享
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Hugging Face - Blog
Hugging Face - Blog
博客园 - 三生石上(FineUI控件)
有赞技术团队
有赞技术团队
小众软件
小众软件
IT之家
IT之家
博客园_首页
博客园 - 聂微东
S
SegmentFault 最新的问题
阮一峰的网络日志
阮一峰的网络日志
博客园 - 叶小钗

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: shard release docker plugin validation · openclaw/ope...
steipete · 2026-04-29 · via Recent Commits to openclaw:main

@@ -5,6 +5,7 @@ import {

55

parseLaneSelection,

66

resolveDockerE2ePlan,

77

} from "../../scripts/lib/docker-e2e-plan.mjs";

8+

import { BUNDLED_PLUGIN_INSTALL_UNINSTALL_SHARDS } from "../../scripts/lib/docker-e2e-scenarios.mjs";

89910

const orderLanes = <T>(lanes: T[]) => lanes;

1011

@@ -47,7 +48,7 @@ describe("scripts/lib/docker-e2e-plan", () => {

4748

expect(plan.lanes.map((lane) => lane.name)).toContain("bundled-channel-feishu");

4849

expect(plan.lanes.map((lane) => lane.name)).toContain("bundled-channel-update-acpx");

4950

expect(plan.lanes.map((lane) => lane.name)).toContain("bundled-plugin-install-uninstall-0");

50-

expect(plan.lanes.map((lane) => lane.name)).toContain("bundled-plugin-install-uninstall-7");

51+

expect(plan.lanes.map((lane) => lane.name)).toContain("bundled-plugin-install-uninstall-23");

5152

expect(plan.lanes.filter((lane) => lane.name === "install-e2e-openai")).toHaveLength(1);

5253

expect(

5354

plan.lanes.filter((lane) => lane.name === "bundled-plugin-install-uninstall-0"),

@@ -119,6 +120,26 @@ describe("scripts/lib/docker-e2e-plan", () => {

119120

profile: RELEASE_PATH_PROFILE,

120121

releaseChunk: "plugins-runtime-install-d",

121122

});

123+

const pluginsRuntimeInstallE = planFor({

124+

includeOpenWebUI: true,

125+

profile: RELEASE_PATH_PROFILE,

126+

releaseChunk: "plugins-runtime-install-e",

127+

});

128+

const pluginsRuntimeInstallF = planFor({

129+

includeOpenWebUI: true,

130+

profile: RELEASE_PATH_PROFILE,

131+

releaseChunk: "plugins-runtime-install-f",

132+

});

133+

const pluginsRuntimeInstallG = planFor({

134+

includeOpenWebUI: true,

135+

profile: RELEASE_PATH_PROFILE,

136+

releaseChunk: "plugins-runtime-install-g",

137+

});

138+

const pluginsRuntimeInstallH = planFor({

139+

includeOpenWebUI: true,

140+

profile: RELEASE_PATH_PROFILE,

141+

releaseChunk: "plugins-runtime-install-h",

142+

});

122143

const bundledChannelsCore = planFor({

123144

includeOpenWebUI: true,

124145

profile: RELEASE_PATH_PROFILE,

@@ -190,18 +211,42 @@ describe("scripts/lib/docker-e2e-plan", () => {

190211

expect(pluginsRuntimeInstallA.lanes.map((lane) => lane.name)).toEqual([

191212

"bundled-plugin-install-uninstall-0",

192213

"bundled-plugin-install-uninstall-1",

214+

"bundled-plugin-install-uninstall-2",

193215

]);

194216

expect(pluginsRuntimeInstallB.lanes.map((lane) => lane.name)).toEqual([

195-

"bundled-plugin-install-uninstall-2",

196217

"bundled-plugin-install-uninstall-3",

197-

]);

198-

expect(pluginsRuntimeInstallC.lanes.map((lane) => lane.name)).toEqual([

199218

"bundled-plugin-install-uninstall-4",

200219

"bundled-plugin-install-uninstall-5",

201220

]);

202-

expect(pluginsRuntimeInstallD.lanes.map((lane) => lane.name)).toEqual([

221+

expect(pluginsRuntimeInstallC.lanes.map((lane) => lane.name)).toEqual([

203222

"bundled-plugin-install-uninstall-6",

204223

"bundled-plugin-install-uninstall-7",

224+

"bundled-plugin-install-uninstall-8",

225+

]);

226+

expect(pluginsRuntimeInstallD.lanes.map((lane) => lane.name)).toEqual([

227+

"bundled-plugin-install-uninstall-9",

228+

"bundled-plugin-install-uninstall-10",

229+

"bundled-plugin-install-uninstall-11",

230+

]);

231+

expect(pluginsRuntimeInstallE.lanes.map((lane) => lane.name)).toEqual([

232+

"bundled-plugin-install-uninstall-12",

233+

"bundled-plugin-install-uninstall-13",

234+

"bundled-plugin-install-uninstall-14",

235+

]);

236+

expect(pluginsRuntimeInstallF.lanes.map((lane) => lane.name)).toEqual([

237+

"bundled-plugin-install-uninstall-15",

238+

"bundled-plugin-install-uninstall-16",

239+

"bundled-plugin-install-uninstall-17",

240+

]);

241+

expect(pluginsRuntimeInstallG.lanes.map((lane) => lane.name)).toEqual([

242+

"bundled-plugin-install-uninstall-18",

243+

"bundled-plugin-install-uninstall-19",

244+

"bundled-plugin-install-uninstall-20",

245+

]);

246+

expect(pluginsRuntimeInstallH.lanes.map((lane) => lane.name)).toEqual([

247+

"bundled-plugin-install-uninstall-21",

248+

"bundled-plugin-install-uninstall-22",

249+

"bundled-plugin-install-uninstall-23",

205250

]);

206251

expect(bundledChannelsCore.lanes.map((lane) => lane.name)).toEqual([

207252

"plugin-update",

@@ -274,7 +319,7 @@ describe("scripts/lib/docker-e2e-plan", () => {

274319

expect.arrayContaining([

275320

"plugins",

276321

"bundled-plugin-install-uninstall-0",

277-

"bundled-plugin-install-uninstall-7",

322+

"bundled-plugin-install-uninstall-23",

278323

"openwebui",

279324

]),

280325

);

@@ -468,9 +513,12 @@ describe("scripts/lib/docker-e2e-plan", () => {

468513

const plan = planFor({ selectedLaneNames });

469514470515

expect(selectedLaneNames).toEqual(

471-

Array.from({ length: 8 }, (_, index) => `bundled-plugin-install-uninstall-${index}`),

516+

Array.from(

517+

{ length: BUNDLED_PLUGIN_INSTALL_UNINSTALL_SHARDS },

518+

(_, index) => `bundled-plugin-install-uninstall-${index}`,

519+

),

472520

);

473-

expect(plan.lanes).toHaveLength(8);

521+

expect(plan.lanes).toHaveLength(BUNDLED_PLUGIN_INSTALL_UNINSTALL_SHARDS);

474522

expect(plan.lanes[0]).toEqual(

475523

expect.objectContaining({

476524

command: expect.stringContaining("OPENCLAW_BUNDLED_PLUGIN_SWEEP_INDEX=0"),

@@ -480,12 +528,12 @@ describe("scripts/lib/docker-e2e-plan", () => {

480528

resources: expect.arrayContaining(["docker", "npm"]),

481529

}),

482530

);

483-

expect(plan.lanes[7]).toEqual(

531+

expect(plan.lanes[23]).toEqual(

484532

expect.objectContaining({

485-

command: expect.stringContaining("OPENCLAW_BUNDLED_PLUGIN_SWEEP_INDEX=7"),

533+

command: expect.stringContaining("OPENCLAW_BUNDLED_PLUGIN_SWEEP_INDEX=23"),

486534

imageKind: "functional",

487535

live: false,

488-

name: "bundled-plugin-install-uninstall-7",

536+

name: "bundled-plugin-install-uninstall-23",

489537

resources: expect.arrayContaining(["docker", "npm"]),

490538

}),

491539

);