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

推荐订阅源

J
Java Code Geeks
F
Fortinet All Blogs
云风的 BLOG
云风的 BLOG
MyScale Blog
MyScale Blog
D
DataBreaches.Net
Stack Overflow Blog
Stack Overflow Blog
A
About on SuperTechFans
Google DeepMind News
Google DeepMind News
Microsoft Security Blog
Microsoft Security Blog
腾讯CDC
The GitHub Blog
The GitHub Blog
Jina AI
Jina AI
B
Blog RSS Feed
I
InfoQ
N
Netflix TechBlog - Medium
T
The Blog of Author Tim Ferriss
Microsoft Azure Blog
Microsoft Azure Blog
Recent Announcements
Recent Announcements
GbyAI
GbyAI
H
Help Net Security
L
LangChain Blog
M
MIT News - Artificial intelligence
Y
Y Combinator Blog
aimingoo的专栏
aimingoo的专栏

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: isolate prompt snapshot check · openclaw/openclaw@f24...
steipete · 2026-05-07 · via Recent Commits to openclaw:main

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

6666

checks_node_core_dist_matrix: ${{ steps.manifest.outputs.checks_node_core_dist_matrix }}

6767

run_check: ${{ steps.manifest.outputs.run_check }}

6868

run_check_additional: ${{ steps.manifest.outputs.run_check_additional }}

69+

additional_matrix: ${{ steps.manifest.outputs.additional_matrix }}

6970

run_build_smoke: ${{ steps.manifest.outputs.run_build_smoke }}

7071

run_check_docs: ${{ steps.manifest.outputs.run_check_docs }}

7172

run_control_ui_i18n: ${{ steps.manifest.outputs.run_control_ui_i18n }}

@@ -205,6 +206,44 @@ jobs:

205206

parseBoolean(process.env.OPENCLAW_CI_RUN_CONTROL_UI_I18N) && !docsOnly;

206207

const runPromptSnapshots =

207208

parseBoolean(process.env.OPENCLAW_CI_RUN_PROMPT_SNAPSHOTS) && !docsOnly;

209+

const additionalCheckTasks = [

210+

{

211+

check_name: "check-additional-boundaries-a",

212+

group: "boundaries",

213+

boundary_shard: "1/4",

214+

},

215+

{

216+

check_name: "check-additional-boundaries-b",

217+

group: "boundaries",

218+

boundary_shard: "2/4",

219+

},

220+

{

221+

check_name: "check-additional-boundaries-c",

222+

group: "boundaries",

223+

boundary_shard: "3/4",

224+

},

225+

{

226+

check_name: "check-additional-boundaries-d",

227+

group: "boundaries",

228+

boundary_shard: "4/4",

229+

},

230+

{ check_name: "check-additional-extension-channels", group: "extension-channels" },

231+

{ check_name: "check-additional-extension-bundled", group: "extension-bundled" },

232+

{

233+

check_name: "check-additional-extension-package-boundary",

234+

group: "extension-package-boundary",

235+

},

236+

{

237+

check_name: "check-additional-runtime-topology-architecture",

238+

group: "runtime-topology-architecture",

239+

},

240+

];

241+

if (runPromptSnapshots) {

242+

additionalCheckTasks.push({

243+

check_name: "check-additional-prompt-snapshots",

244+

group: "prompt-snapshots",

245+

});

246+

}

208247

const checksFastCoreTasks = [];

209248

if (runNodeFull) {

210249

checksFastCoreTasks.push(

@@ -270,6 +309,7 @@ jobs:

270309

checks_node_core_dist_matrix: createMatrix(nodeTestDistShards),

271310

run_check: runNodeFull,

272311

run_check_additional: runNodeFull,

312+

additional_matrix: createMatrix(runNodeFull ? additionalCheckTasks : []),

273313

run_build_smoke: runNodeFull,

274314

run_check_docs: docsChanged,

275315

run_control_ui_i18n: runControlUiI18n,

@@ -1539,28 +1579,7 @@ jobs:

15391579

timeout-minutes: 20

15401580

strategy:

15411581

fail-fast: false

1542-

matrix:

1543-

include:

1544-

- check_name: check-additional-boundaries-a

1545-

group: boundaries

1546-

boundary_shard: 1/4

1547-

- check_name: check-additional-boundaries-b

1548-

group: boundaries

1549-

boundary_shard: 2/4

1550-

- check_name: check-additional-boundaries-c

1551-

group: boundaries

1552-

boundary_shard: 3/4

1553-

- check_name: check-additional-boundaries-d

1554-

group: boundaries

1555-

boundary_shard: 4/4

1556-

- check_name: check-additional-extension-channels

1557-

group: extension-channels

1558-

- check_name: check-additional-extension-bundled

1559-

group: extension-bundled

1560-

- check_name: check-additional-extension-package-boundary

1561-

group: extension-package-boundary

1562-

- check_name: check-additional-runtime-topology-architecture

1563-

group: runtime-topology-architecture

1582+

matrix: ${{ fromJson(needs.preflight.outputs.additional_matrix) }}

15641583

steps:

15651584

- name: Checkout

15661585

shell: bash

@@ -1686,6 +1705,9 @@ jobs:

16861705

boundaries)

16871706

node scripts/run-additional-boundary-checks.mjs

16881707

;;

1708+

prompt-snapshots)

1709+

run_check "prompt:snapshots:check" pnpm prompt:snapshots:check

1710+

;;

16891711

extension-channels)

16901712

run_check "lint:extensions:channels" pnpm run lint:extensions:channels

16911713

;;