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

推荐订阅源

P
Proofpoint News Feed
Blog — PlanetScale
Blog — PlanetScale
GbyAI
GbyAI
C
Check Point Blog
腾讯CDC
Stack Overflow Blog
Stack Overflow Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
The GitHub Blog
The GitHub Blog
A
About on SuperTechFans
Recent Announcements
Recent Announcements
L
LangChain Blog
Microsoft Azure Blog
Microsoft Azure Blog
小众软件
小众软件
J
Java Code Geeks
博客园_首页
Jina AI
Jina AI
美团技术团队
H
Help Net Security
MyScale Blog
MyScale Blog
Engineering at Meta
Engineering at Meta
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
人人都是产品经理
人人都是产品经理
Y
Y Combinator Blog
S
SegmentFault 最新的问题

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): keep ci workflow edits off fast-only routing · o...
vincentkoc · 2026-06-17 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -850,10 +850,10 @@ jobs:

850850

;;

851851

contracts-plugins-ci-routing)

852852

pnpm test:contracts:plugins

853-

pnpm test src/commands/status.scan-result.test.ts src/scripts/ci-changed-scope.test.ts test/scripts/changed-lanes.test.ts test/scripts/run-vitest.test.ts test/scripts/test-projects.test.ts

853+

pnpm test src/commands/status.scan-result.test.ts src/scripts/ci-changed-scope.test.ts test/scripts/changed-lanes.test.ts test/scripts/ci-workflow-guards.test.ts test/scripts/run-vitest.test.ts test/scripts/test-projects.test.ts

854854

;;

855855

ci-routing)

856-

pnpm test src/commands/status.scan-result.test.ts src/scripts/ci-changed-scope.test.ts test/scripts/changed-lanes.test.ts test/scripts/run-vitest.test.ts test/scripts/test-projects.test.ts

856+

pnpm test src/commands/status.scan-result.test.ts src/scripts/ci-changed-scope.test.ts test/scripts/changed-lanes.test.ts test/scripts/ci-workflow-guards.test.ts test/scripts/run-vitest.test.ts test/scripts/test-projects.test.ts

857857

;;

858858

bun-launcher)

859859

OPENCLAW_TEST_BUN_LAUNCHER=1 pnpm test test/openclaw-launcher.e2e.test.ts

Original file line numberDiff line numberDiff line change

@@ -57,7 +57,7 @@ const FAST_INSTALL_SMOKE_RUNTIME_SCOPE_RE =

5757

const NODE_FAST_PLUGIN_CONTRACT_SCOPE_RE =

5858

/^src\/plugins\/contracts\/(?:inventory\/bundled-capability-metadata|registry|tts-contract-suites)\.ts$/;

5959

const NODE_FAST_CI_ROUTING_SCOPE_RE =

60-

/^(scripts\/(?:ci-changed-scope|check-changed|run-vitest|test-projects(?:\.test-support)?)\.mjs$|scripts\/test-projects\.test-support\.d\.mts$|src\/commands\/status\.scan-result\.test\.ts$|src\/scripts\/ci-changed-scope\.test\.ts$|test\/scripts\/(?:changed-lanes|run-vitest|test-projects)\.test\.ts$|\.github\/workflows\/ci\.yml$)/;

60+

/^(scripts\/(?:ci-changed-scope|check-changed|run-vitest|test-projects(?:\.test-support)?)\.mjs$|scripts\/test-projects\.test-support\.d\.mts$|src\/commands\/status\.scan-result\.test\.ts$|src\/scripts\/ci-changed-scope\.test\.ts$|test\/scripts\/(?:changed-lanes|run-vitest|test-projects)\.test\.ts$)/;

6161

const NODE_FAST_SCOPE_RE = new RegExp(

6262

`${NODE_FAST_PLUGIN_CONTRACT_SCOPE_RE.source}|${NODE_FAST_CI_ROUTING_SCOPE_RE.source}`,

6363

);

Original file line numberDiff line numberDiff line change

@@ -400,6 +400,7 @@ const PRECISE_SOURCE_TEST_TARGETS = new Map([

400400

const BROAD_ONLY_TEST_HELPERS = new Set(["test/helpers/poll.ts"]);

401401

const TOOLING_SOURCE_TEST_TARGETS = new Map([

402402

[".crabbox.yaml", ["test/scripts/package-acceptance-workflow.test.ts"]],

403+

[".github/workflows/ci.yml", ["test/scripts/ci-workflow-guards.test.ts"]],

403404

[

404405

".github/workflows/ci-check-testbox.yml",

405406

["test/scripts/ci-workflow-guards.test.ts", "test/scripts/package-acceptance-workflow.test.ts"],

Original file line numberDiff line numberDiff line change

@@ -689,7 +689,6 @@ describe("detectChangedScope", () => {

689689

it("identifies CI routing changes as fast Node-only CI scope", () => {

690690

expect(

691691

detectNodeFastScope([

692-

".github/workflows/ci.yml",

693692

"scripts/check-changed.mjs",

694693

"scripts/ci-changed-scope.mjs",

695694

"scripts/run-vitest.mjs",

@@ -708,6 +707,14 @@ describe("detectChangedScope", () => {

708707

});

709708

});

710709
710+

it("keeps CI workflow edits off fast-only scope so native lanes can run", () => {

711+

expect(detectNodeFastScope([".github/workflows/ci.yml"])).toEqual({

712+

runFastOnly: false,

713+

runPluginContracts: false,

714+

runCiRouting: false,

715+

});

716+

});

717+
711718

it("keeps broad source changes on the full Node CI scope", () => {

712719

expect(

713720

detectNodeFastScope([

Original file line numberDiff line numberDiff line change

@@ -345,6 +345,18 @@ describe("ci workflow guards", () => {

345345

});

346346

});

347347
348+

it("keeps workflow guards in fast CI-routing checks", () => {

349+

const workflow = readCiWorkflow();

350+

const fastCoreJob = workflow.jobs["checks-fast-core"];

351+

const runStep = fastCoreJob.steps.find(

352+

(step) => step.name === "Run ${{ matrix.task }} (${{ matrix.runtime }})",

353+

);

354+
355+

expect(runStep.run).toContain("contracts-plugins-ci-routing)");

356+

expect(runStep.run).toContain("ci-routing)");

357+

expect(runStep.run.match(/test\/scripts\/ci-workflow-guards\.test\.ts/g)?.length).toBe(2);

358+

});

359+
348360

it("keeps push docs validation ClawHub-backed", () => {

349361

const workflow = readFileSync(".github/workflows/docs.yml", "utf8");

350362
Original file line numberDiff line numberDiff line change

@@ -484,6 +484,13 @@ describe("scripts/test-projects changed-target routing", () => {

484484

});

485485

});

486486
487+

it("keeps CI workflow edits on workflow guard tests", () => {

488+

expect(resolveChangedTestTargetPlan([".github/workflows/ci.yml"])).toEqual({

489+

mode: "targets",

490+

targets: ["test/scripts/ci-workflow-guards.test.ts"],

491+

});

492+

});

493+
487494

it("keeps Crabbox and Testbox workflow edits on workflow regression tests", () => {

488495

for (const workflowPath of [

489496

".github/workflows/ci-check-testbox.yml",