ci: split auto-reply session shard · openclaw/openclaw@07ca99d
steipete
·
2026-04-29
·
via Recent Commits to openclaw:main
| Original file line number | Diff line number | Diff line change |
|---|
@@ -40,6 +40,7 @@ function createAutoReplyReplySplitShards() {
|
40 | 40 | "auto-reply-reply-agent-runner": [], |
41 | 41 | "auto-reply-reply-commands": [], |
42 | 42 | "auto-reply-reply-dispatch": [], |
| 43 | +"auto-reply-reply-session": [], |
43 | 44 | "auto-reply-reply-state-routing": [], |
44 | 45 | }; |
45 | 46 | |
@@ -62,6 +63,8 @@ function createAutoReplyReplySplitShards() {
|
62 | 63 | name.startsWith("get-reply") |
63 | 64 | ) { |
64 | 65 | groups["auto-reply-reply-dispatch"].push(file); |
| 66 | +} else if (name.startsWith("session")) { |
| 67 | +groups["auto-reply-reply-session"].push(file); |
65 | 68 | } else { |
66 | 69 | groups["auto-reply-reply-state-routing"].push(file); |
67 | 70 | } |
|
| Original file line number | Diff line number | Diff line change |
|---|
@@ -340,6 +340,12 @@ describe("scripts/lib/ci-node-test-plan.mjs", () => {
|
340 | 340 | requiresDist: false, |
341 | 341 | shardName: "auto-reply-reply-dispatch", |
342 | 342 | }, |
| 343 | +{ |
| 344 | +checkName: "checks-node-auto-reply-reply-session", |
| 345 | +configs: ["test/vitest/vitest.auto-reply-reply.config.ts"], |
| 346 | +requiresDist: false, |
| 347 | +shardName: "auto-reply-reply-session", |
| 348 | +}, |
343 | 349 | { |
344 | 350 | checkName: "checks-node-auto-reply-reply-state-routing", |
345 | 351 | configs: ["test/vitest/vitest.auto-reply-reply.config.ts"], |
|
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。