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

推荐订阅源

L
LangChain Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
雷峰网
雷峰网
量子位
V
V2EX
S
SegmentFault 最新的问题
月光博客
月光博客
博客园 - 【当耐特】
Hugging Face - Blog
Hugging Face - Blog
V
Visual Studio Blog
大猫的无限游戏
大猫的无限游戏
T
Tailwind CSS Blog
博客园_首页
博客园 - Franky
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
美团技术团队
Y
Y Combinator Blog
The Cloudflare Blog
C
Check Point Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
腾讯CDC
B
Blog
Stack Overflow Blog
Stack Overflow Blog
P
Proofpoint News Feed

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: cap extension shard vitest workers · openclaw/opencla...
steipete · 2026-04-24 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -975,6 +975,7 @@ jobs:

975975

- name: Run extension shard

976976

env:

977977

OPENCLAW_EXTENSION_BATCH_PARALLEL: 2

978+

OPENCLAW_VITEST_MAX_WORKERS: 1

978979

OPENCLAW_EXTENSION_BATCH: ${{ matrix.extensions_csv }}

979980

run: pnpm test:extensions:batch -- "$OPENCLAW_EXTENSION_BATCH"

980981
Original file line numberDiff line numberDiff line change

@@ -75,7 +75,7 @@ Local changed-lane logic lives in `scripts/changed-lanes.mjs` and is executed by

7575
7676

On pushes, the `checks` matrix adds the push-only `compat-node22` lane. On pull requests, that lane is skipped and the matrix stays focused on the normal test/channel lanes.

7777
78-

The slowest Node test families are split or balanced so each job stays small without over-reserving runners: channel contracts run as three weighted shards, bundled plugin tests balance across six extension workers, small core unit lanes are paired, auto-reply runs as three balanced workers instead of six tiny workers, and agentic gateway/plugin configs are spread across the existing source-only agentic Node jobs instead of waiting on built artifacts. Broad browser, QA, media, and miscellaneous plugin tests use their dedicated Vitest configs instead of the shared plugin catch-all. The broad agents lane uses the shared Vitest file-parallel scheduler because it is import/scheduling dominated rather than owned by a single slow test file. `runtime-config` runs with the infra core-runtime shard to keep the shared runtime shard from owning the tail. `check-additional` keeps package-boundary compile/canary work together and separates runtime topology architecture from gateway watch coverage; the boundary guard shard runs its small independent guards concurrently inside one job. Gateway watch, channel tests, and the core support-boundary shard run concurrently inside `build-artifacts` after `dist/` and `dist-runtime/` are already built, keeping their old check names as lightweight verifier jobs while avoiding two extra Blacksmith workers and a second artifact-consumer queue.

78+

The slowest Node test families are split or balanced so each job stays small without over-reserving runners: channel contracts run as three weighted shards, bundled plugin tests balance across six extension workers, small core unit lanes are paired, auto-reply runs as three balanced workers instead of six tiny workers, and agentic gateway/plugin configs are spread across the existing source-only agentic Node jobs instead of waiting on built artifacts. Broad browser, QA, media, and miscellaneous plugin tests use their dedicated Vitest configs instead of the shared plugin catch-all. Extension shard jobs can run two plugin config groups concurrently, but cap each Vitest config to one worker so import-heavy plugin batches do not overcommit small CI runners. The broad agents lane uses the shared Vitest file-parallel scheduler because it is import/scheduling dominated rather than owned by a single slow test file. `runtime-config` runs with the infra core-runtime shard to keep the shared runtime shard from owning the tail. `check-additional` keeps package-boundary compile/canary work together and separates runtime topology architecture from gateway watch coverage; the boundary guard shard runs its small independent guards concurrently inside one job. Gateway watch, channel tests, and the core support-boundary shard run concurrently inside `build-artifacts` after `dist/` and `dist-runtime/` are already built, keeping their old check names as lightweight verifier jobs while avoiding two extra Blacksmith workers and a second artifact-consumer queue.

7979

Android CI runs both `testPlayDebugUnitTest` and `testThirdPartyDebugUnitTest`, then builds the Play debug APK. The third-party flavor has no separate source set or manifest; its unit-test lane still compiles that flavor with the SMS/call-log BuildConfig flags, while avoiding a duplicate debug APK packaging job on every Android-relevant push.

8080

`extension-fast` is PR-only because push runs already execute the full bundled plugin shards. That keeps changed-plugin feedback for reviews without reserving an extra Blacksmith worker on `main` for coverage already present in `checks-node-extensions`.

8181
Original file line numberDiff line numberDiff line change

@@ -12,7 +12,10 @@ import {

1212

} from "./vitest/vitest.contracts-shared.ts";

1313

import { createGatewayVitestConfig } from "./vitest/vitest.gateway.config.ts";

1414

import { createPluginSdkLightVitestConfig } from "./vitest/vitest.plugin-sdk-light.config.ts";

15-

import { sharedVitestConfig } from "./vitest/vitest.shared.config.ts";

15+

import {

16+

resolveSharedVitestWorkerConfig,

17+

sharedVitestConfig,

18+

} from "./vitest/vitest.shared.config.ts";

1619

import { createUiVitestConfig } from "./vitest/vitest.ui.config.ts";

1720

import { createUnitFastVitestConfig } from "./vitest/vitest.unit-fast.config.ts";

1821

import unitUiConfig from "./vitest/vitest.unit-ui.config.ts";

@@ -44,6 +47,39 @@ describe("projects vitest config", () => {

4447

expect(createContractsVitestConfig(pluginContractPatterns).test.pool).toBe("forks");

4548

});

4649
50+

it("honors explicit worker caps in CI vitest lanes", () => {

51+

expect(

52+

resolveSharedVitestWorkerConfig({

53+

env: { CI: "true", OPENCLAW_VITEST_MAX_WORKERS: "1" },

54+

isCI: true,

55+

isWindows: false,

56+

localScheduling: {

57+

fileParallelism: false,

58+

maxWorkers: 1,

59+

throttledBySystem: false,

60+

},

61+

}),

62+

).toEqual({

63+

fileParallelism: false,

64+

maxWorkers: 1,

65+

});

66+

expect(

67+

resolveSharedVitestWorkerConfig({

68+

env: { CI: "true" },

69+

isCI: true,

70+

isWindows: false,

71+

localScheduling: {

72+

fileParallelism: false,

73+

maxWorkers: 1,

74+

throttledBySystem: false,

75+

},

76+

}),

77+

).toEqual({

78+

fileParallelism: true,

79+

maxWorkers: 3,

80+

});

81+

});

82+
4783

it("keeps contract shards on the non-isolated fork runner by default", () => {

4884

const config = createContractsVitestConfig(pluginContractPatterns);

4985

expect(config.test.pool).toBe("forks");

Original file line numberDiff line numberDiff line change

@@ -76,7 +76,43 @@ const localScheduling = resolveLocalVitestScheduling(

7676

detectVitestHostInfo(),

7777

defaultPool,

7878

);

79-

const ciWorkers = isWindows ? 2 : 3;

79+
80+

function hasWorkerOverride(env: Record<string, string | undefined>): boolean {

81+

return Boolean((env.OPENCLAW_VITEST_MAX_WORKERS ?? env.OPENCLAW_TEST_WORKERS)?.trim());

82+

}

83+
84+

export function resolveSharedVitestWorkerConfig(params: {

85+

env?: Record<string, string | undefined>;

86+

isCI?: boolean;

87+

isWindows?: boolean;

88+

localScheduling?: LocalVitestScheduling;

89+

}): Pick<LocalVitestScheduling, "fileParallelism" | "maxWorkers"> {

90+

const env = params.env ?? process.env;

91+

const local = params.localScheduling ?? localScheduling;

92+

if (hasWorkerOverride(env)) {

93+

return {

94+

fileParallelism: local.fileParallelism,

95+

maxWorkers: local.maxWorkers,

96+

};

97+

}

98+

if (params.isCI ?? isCI) {

99+

return {

100+

fileParallelism: true,

101+

maxWorkers: (params.isWindows ?? isWindows) ? 2 : 3,

102+

};

103+

}

104+

return {

105+

fileParallelism: local.fileParallelism,

106+

maxWorkers: local.maxWorkers,

107+

};

108+

}

109+
110+

const workerConfig = resolveSharedVitestWorkerConfig({

111+

env: process.env,

112+

isCI,

113+

isWindows,

114+

localScheduling,

115+

});

80116
81117

if (!isCI && localScheduling.throttledBySystem && shouldPrintVitestThrottle(process.env)) {

82118

console.error(

@@ -118,8 +154,8 @@ export const sharedVitestConfig = {

118154

isolate: false,

119155

pool: defaultPool,

120156

runner: nonIsolatedRunnerPath,

121-

maxWorkers: isCI ? ciWorkers : localScheduling.maxWorkers,

122-

fileParallelism: isCI ? true : localScheduling.fileParallelism,

157+

maxWorkers: workerConfig.maxWorkers,

158+

fileParallelism: workerConfig.fileParallelism,

123159

forceRerunTriggers: [

124160

"package.json",

125161

"pnpm-lock.yaml",