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

推荐订阅源

U
Unit 42
博客园 - 司徒正美
V
Visual Studio Blog
博客园 - 【当耐特】
T
Tailwind CSS Blog
美团技术团队
博客园 - 叶小钗
Jina AI
Jina AI
宝玉的分享
宝玉的分享
IT之家
IT之家
Hugging Face - Blog
Hugging Face - Blog
雷峰网
雷峰网
Stack Overflow Blog
Stack Overflow Blog
博客园_首页
人人都是产品经理
人人都是产品经理
T
The Blog of Author Tim Ferriss
P
Proofpoint News Feed
Microsoft Security Blog
Microsoft Security Blog
Y
Y Combinator Blog
GbyAI
GbyAI
大猫的无限游戏
大猫的无限游戏
Martin Fowler
Martin Fowler
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
腾讯CDC

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
test(scripts): run macOS app tests for app changes · open...
vincentkoc · 2026-06-21 · via Recent Commits to openclaw:main

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

1919

createPnpmManagedCommand,

2020

createTargetedCoreLintCommand,

2121

shouldDelegateChangedCheckToCrabbox,

22+

shouldRunAppcastOwnerTest,

2223

shouldRunPromptSnapshotCheck,

2324

shouldRunPromptSnapshotOwnerTest,

2425

shouldRunRuntimeSidecarBaselineCheck,

@@ -1449,26 +1450,45 @@ describe("scripts/changed-lanes", () => {

14491450

expect(plan.commands.map((command) => command.args[0])).not.toContain("tsgo:all");

14501451

});

145114521452-

it("keeps app lint explicit when non-macOS hosts lack SwiftLint", () => {

1453-

const result = detectChangedLanes([

1453+

it("runs macOS app CI tests for macOS app dependency changes", () => {

1454+

for (const changedPath of [

1455+

"apps/macos/Sources/OpenClawMac/AppDelegate.swift",

1456+

"apps/macos-mlx-tts/Sources/OpenClawMLXTTS/main.swift",

14541457

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

1455-

]);

1456-

const plan = createChangedCheckPlan(result, {

1457-

env: { PATH: "/usr/bin" },

1458-

platform: "linux",

1459-

swiftlintAvailable: false,

1460-

});

1458+

"apps/swabble/Sources/SwabbleKit/WakeWordGate.swift",

1459+

"Swabble/Sources/SwabbleKit/WakeWordGate.swift",

1460+

]) {

1461+

const result = detectChangedLanes([changedPath]);

1462+

const plan = createChangedCheckPlan(result, {

1463+

env: { PATH: "/usr/bin" },

1464+

platform: "linux",

1465+

swiftlintAvailable: false,

1466+

});

1467+1468+

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

1469+

expect(plan.commands).toContainEqual(

1470+

expect.objectContaining({

1471+

name: "lint apps (swiftlint unavailable on this host)",

1472+

bin: "node",

1473+

}),

1474+

);

1475+

expect(plan.commands).toContainEqual({

1476+

name: "macOS app CI tests",

1477+

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

1478+

});

1479+

}

1480+

});

146114811462-

expectLanes(result.lanes, {

1463-

apps: true,

1482+

it("routes appcast changes to appcast owner tests", () => {

1483+

const result = detectChangedLanes(["appcast.xml"]);

1484+

const plan = createChangedCheckPlan(result);

1485+1486+

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"],

14641490

});

1465-

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

1466-

expect(plan.commands).toContainEqual(

1467-

expect.objectContaining({

1468-

name: "lint apps (swiftlint unavailable on this host)",

1469-

bin: "node",

1470-

}),

1471-

);

1491+

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

14721492

});

1473149314741494

it("runs app lint when SwiftLint is available in Testbox", () => {

@@ -1482,6 +1502,24 @@ describe("scripts/changed-lanes", () => {

14821502

});

1483150314841504

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+

});

1509+

});

1510+1511+

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

1512+

const result = detectChangedLanes(["apps/android/app/src/main/AndroidManifest.xml"]);

1513+

const plan = createChangedCheckPlan(result, {

1514+

env: { CI: "1", PATH: "/usr/bin" },

1515+

platform: "linux",

1516+

swiftlintAvailable: true,

1517+

});

1518+1519+

expectLanes(result.lanes, {

1520+

apps: true,

1521+

});

1522+

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

14851523

});

1486152414871525

it("routes legacy root asset deletions as tooling during root cleanup", () => {