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

推荐订阅源

Google DeepMind News
Google DeepMind News
I
InfoQ
Engineering at Meta
Engineering at Meta
D
DataBreaches.Net
L
LangChain Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Recent Announcements
Recent Announcements
GbyAI
GbyAI
爱范儿
爱范儿
Microsoft Security Blog
Microsoft Security Blog
腾讯CDC
美团技术团队
罗磊的独立博客
Microsoft Azure Blog
Microsoft Azure Blog
WordPress大学
WordPress大学
T
The Blog of Author Tim Ferriss
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
雷峰网
雷峰网
M
MIT News - Artificial intelligence
D
Docker
MongoDB | Blog
MongoDB | Blog
F
Fortinet All Blogs
博客园 - 叶小钗

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): regenerate Swift protocol model · openclaw/openc...
vincentkoc · 2026-06-21 · via Recent Commits to openclaw:main

@@ -807,6 +807,21 @@ describe("scripts/changed-lanes", () => {

807807

});

808808

});

809809810+

it("runs changed-check app tests under the parent heavy-check lock", () => {

811+

const result = detectChangedLanes([

812+

"apps/shared/OpenClawKit/Sources/OpenClawProtocol/GatewayModels.swift",

813+

]);

814+

const plan = createChangedCheckPlan(result, { env: { PATH: "/usr/bin" } });

815+

const testCommand = plan.commands.find((command) => command.args[0] === "test:macos:ci");

816+817+

expect(testCommand?.env).toEqual({

818+

OPENCLAW_OXLINT_SKIP_LOCK: "1",

819+

OPENCLAW_TEST_HEAVY_CHECK_LOCK_HELD: "1",

820+

OPENCLAW_TSGO_HEAVY_CHECK_LOCK_HELD: "1",

821+

PATH: "/usr/bin",

822+

});

823+

});

824+810825

it("routes core test-only changes to core test lanes only", () => {

811826

const result = detectChangedLanes([

812827

"packages/normalization-core/src/string-normalization.test.ts",

@@ -1315,10 +1330,12 @@ describe("scripts/changed-lanes", () => {

13151330

name: "prompt snapshot drift",

13161331

args: ["prompt:snapshots:check"],

13171332

});

1318-

expect(plan.commands).toContainEqual({

1319-

name: "prompt snapshot owner test",

1320-

args: ["test:serial", "test/scripts/prompt-snapshots.test.ts"],

1321-

});

1333+

expect(plan.commands).toContainEqual(

1334+

expect.objectContaining({

1335+

name: "prompt snapshot owner test",

1336+

args: ["test:serial", "test/scripts/prompt-snapshots.test.ts"],

1337+

}),

1338+

);

13221339

});

1323134013241341

it("runs the prompt snapshot owner test for model fixture generator surfaces", () => {

@@ -1332,10 +1349,12 @@ describe("scripts/changed-lanes", () => {

13321349

const result = detectChangedLanes(["scripts/sync-codex-model-prompt-fixture.ts"]);

13331350

const plan = createChangedCheckPlan(result);

133413511335-

expect(plan.commands).toContainEqual({

1336-

name: "prompt snapshot owner test",

1337-

args: ["test:serial", "test/scripts/prompt-snapshots.test.ts"],

1338-

});

1352+

expect(plan.commands).toContainEqual(

1353+

expect.objectContaining({

1354+

name: "prompt snapshot owner test",

1355+

args: ["test:serial", "test/scripts/prompt-snapshots.test.ts"],

1356+

}),

1357+

);

13391358

});

1340135913411360

it("runs runtime sidecar baseline checks for baseline owner surfaces", () => {

@@ -1355,10 +1374,12 @@ describe("scripts/changed-lanes", () => {

13551374

name: "runtime sidecar baseline",

13561375

args: ["runtime-sidecars:check"],

13571376

});

1358-

expect(plan.commands).toContainEqual({

1359-

name: "runtime sidecar owner test",

1360-

args: ["test:serial", "src/plugins/bundled-plugin-metadata.test.ts"],

1361-

});

1377+

expect(plan.commands).toContainEqual(

1378+

expect.objectContaining({

1379+

name: "runtime sidecar owner test",

1380+

args: ["test:serial", "src/plugins/bundled-plugin-metadata.test.ts"],

1381+

}),

1382+

);

13621383

});

1363138413641385

it("guards release metadata package changes to the top-level version field", () => {

@@ -1472,10 +1493,12 @@ describe("scripts/changed-lanes", () => {

14721493

bin: "node",

14731494

}),

14741495

);

1475-

expect(plan.commands).toContainEqual({

1476-

name: "macOS app CI tests",

1477-

args: ["test:macos:ci"],

1478-

});

1496+

expect(plan.commands).toContainEqual(

1497+

expect.objectContaining({

1498+

name: "macOS app CI tests",

1499+

args: ["test:macos:ci"],

1500+

}),

1501+

);

14791502

}

14801503

});

14811504

@@ -1484,10 +1507,12 @@ describe("scripts/changed-lanes", () => {

14841507

const plan = createChangedCheckPlan(result);

1485150814861509

expect(shouldRunAppcastOwnerTest(result.paths)).toBe(true);

1487-

expect(plan.commands).toContainEqual({

1488-

name: "appcast owner tests",

1489-

args: ["test:serial", "test/appcast.test.ts", "test/scripts/make-appcast.test.ts"],

1490-

});

1510+

expect(plan.commands).toContainEqual(

1511+

expect.objectContaining({

1512+

name: "appcast owner tests",

1513+

args: ["test:serial", "test/appcast.test.ts", "test/scripts/make-appcast.test.ts"],

1514+

}),

1515+

);

14911516

expect(plan.commands.map((command) => command.name)).not.toContain("macOS app CI tests");

14921517

});

14931518

@@ -1502,10 +1527,12 @@ describe("scripts/changed-lanes", () => {

15021527

});

1503152815041529

expect(plan.commands.map((command) => command.args[0])).toContain("lint:apps");

1505-

expect(plan.commands).toContainEqual({

1506-

name: "macOS app CI tests",

1507-

args: ["test:macos:ci"],

1508-

});

1530+

expect(plan.commands).toContainEqual(

1531+

expect.objectContaining({

1532+

name: "macOS app CI tests",

1533+

args: ["test:macos:ci"],

1534+

}),

1535+

);

15091536

});

1510153715111538

it("keeps macOS app CI tests out of Android-only app changes", () => {