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

推荐订阅源

Jina AI
Jina AI
云风的 BLOG
云风的 BLOG
人人都是产品经理
人人都是产品经理
T
The Blog of Author Tim Ferriss
阮一峰的网络日志
阮一峰的网络日志
罗磊的独立博客
J
Java Code Geeks
博客园 - 聂微东
B
Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
WordPress大学
WordPress大学
腾讯CDC
L
LangChain Blog
Apple Machine Learning Research
Apple Machine Learning Research
Microsoft Azure Blog
Microsoft Azure Blog
D
DataBreaches.Net
The GitHub Blog
The GitHub Blog
美团技术团队
博客园 - Franky
Google DeepMind News
Google DeepMind News
V
V2EX
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
月光博客
月光博客
The Cloudflare Blog

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(scripts): restore sparse crabbox changed gates · open...
vincentkoc · 2026-05-25 · via Recent Commits to openclaw:main

@@ -40,7 +40,9 @@ function writeFakeCrabbox(binDir: string, helpText: string): string {

4040

return crabboxPath;

4141

}

424243-

function makeFakeGit(responses: Record<string, { status?: number; stdout?: string; stderr?: string }>): string {

43+

function makeFakeGit(

44+

responses: Record<string, { status?: number; stdout?: string; stderr?: string }>,

45+

): string {

4446

const binDir = mkdtempSync(path.join(tmpdir(), "openclaw-fake-git-"));

4547

tempDirs.push(binDir);

4648

const gitPath = path.join(binDir, "git");

@@ -91,7 +93,10 @@ function runWrapper(

9193

});

9294

}

939594-

function parseFakeCrabboxOutput(result: ReturnType<typeof runWrapper>): { args: string[]; cwd: string } {

96+

function parseFakeCrabboxOutput(result: ReturnType<typeof runWrapper>): {

97+

args: string[];

98+

cwd: string;

99+

} {

95100

return JSON.parse(result.stdout.trim()) as { args: string[]; cwd: string };

96101

}

97102

@@ -261,11 +266,9 @@ describe("scripts/crabbox-wrapper", () => {

261266

const staleBinDir = mkdtempSync(path.join(tmpdir(), "openclaw-stale-crabbox-"));

262267

tempDirs.push(staleBinDir);

263268

writeFileSync(path.join(staleBinDir, "crabbox"), "not executable\n", "utf8");

264-

const result = runWrapper(

265-

"provider: aws\n",

266-

["run", "--provider", "aws", "--", "echo ok"],

267-

{ extraPathEntries: [staleBinDir] },

268-

);

269+

const result = runWrapper("provider: aws\n", ["run", "--provider", "aws", "--", "echo ok"], {

270+

extraPathEntries: [staleBinDir],

271+

});

269272270273

expect(result.status).toBe(0);

271274

expect(parseFakeCrabboxOutput(result).args).toContain("aws");

@@ -411,6 +414,96 @@ describe("scripts/crabbox-wrapper", () => {

411414

expect(parseFakeCrabboxOutput(result).cwd).toContain("openclaw-crabbox-sync-");

412415

});

413416417+

it("bootstraps Git metadata for sparse changed gates on remote raw syncs", () => {

418+

const result = runWrapper(

419+

"provider: hetzner, aws, local-container, blacksmith-testbox, or cloudflare\n",

420+

["run", "--provider", "aws", "--", "corepack", "pnpm", "check:changed"],

421+

{

422+

gitResponses: {

423+

["config\u0000--bool\u0000core.sparseCheckout"]: { stdout: "true\n" },

424+

["status\u0000--porcelain=v1"]: { stdout: "" },

425+

["merge-base\u0000origin/main\u0000HEAD"]: { stdout: "abc123\n" },

426+

},

427+

},

428+

);

429+430+

const output = parseFakeCrabboxOutput(result);

431+

const remoteCommand = output.args.at(-1) ?? "";

432+

expect(result.status).toBe(0);

433+

expect(output.args).toContain("--shell");

434+

expect(remoteCommand).toContain("git init -q");

435+

expect(remoteCommand).toContain(

436+

"git fetch -q --depth=1 origin abc123:refs/remotes/origin/main",

437+

);

438+

expect(remoteCommand).toContain("git reset --mixed --quiet refs/remotes/origin/main");

439+

expect(remoteCommand).toContain("git add -A");

440+

expect(remoteCommand).toContain("git diff --cached --quiet");

441+

expect(remoteCommand).toContain("commit -q --no-gpg-sign -m remote-changed-gate-tree");

442+

expect(remoteCommand).toMatch(/&& corepack pnpm check:changed$/u);

443+

});

444+445+

it("preserves existing shell changed-gate commands after remote Git bootstrap", () => {

446+

const result = runWrapper(

447+

"provider: hetzner, aws, local-container, blacksmith-testbox, or cloudflare\n",

448+

["run", "--provider", "aws", "--shell", "--", "env CI=1 pnpm check:changed"],

449+

{

450+

gitResponses: {

451+

["config\u0000--bool\u0000core.sparseCheckout"]: { stdout: "true\n" },

452+

["status\u0000--porcelain=v1"]: { stdout: "" },

453+

["merge-base\u0000origin/main\u0000HEAD"]: { stdout: "abc123\n" },

454+

},

455+

},

456+

);

457+458+

const output = parseFakeCrabboxOutput(result);

459+

const remoteCommand = output.args.at(-1) ?? "";

460+

expect(result.status).toBe(0);

461+

expect(output.args.filter((arg) => arg === "--shell")).toHaveLength(1);

462+

expect(remoteCommand).toContain(

463+

"git fetch -q --depth=1 origin abc123:refs/remotes/origin/main",

464+

);

465+

expect(remoteCommand).toMatch(/&& env CI=1 pnpm check:changed$/u);

466+

});

467+468+

it("does not inject the POSIX changed-gate bootstrap for Windows targets", () => {

469+

const result = runWrapper(

470+

"provider: hetzner, aws, local-container, blacksmith-testbox, or cloudflare\n",

471+

[

472+

"run",

473+

"--provider",

474+

"aws",

475+

"--target",

476+

"windows",

477+

"--",

478+

"corepack",

479+

"pnpm",

480+

"check:changed",

481+

],

482+

{

483+

gitResponses: {

484+

["config\u0000--bool\u0000core.sparseCheckout"]: { stdout: "true\n" },

485+

["status\u0000--porcelain=v1"]: { stdout: "" },

486+

["merge-base\u0000origin/main\u0000HEAD"]: { stdout: "abc123\n" },

487+

},

488+

},

489+

);

490+491+

const output = parseFakeCrabboxOutput(result);

492+

expect(result.status).toBe(0);

493+

expect(output.args).not.toContain("--shell");

494+

expect(output.args).toEqual([

495+

"run",

496+

"--provider",

497+

"aws",

498+

"--target",

499+

"windows",

500+

"--",

501+

"corepack",

502+

"pnpm",

503+

"check:changed",

504+

]);

505+

});

506+414507

it("keeps clean sparse local-container syncs on the original checkout", () => {

415508

const result = runWrapper(

416509

"provider: hetzner, aws, local-container, blacksmith-testbox, or cloudflare\n",

@@ -508,7 +601,9 @@ describe("scripts/crabbox-wrapper", () => {

508601

const output = parseFakeCrabboxOutput(result);

509602

expect(result.status).toBe(0);

510603

expect(output.cwd).toContain("openclaw-crabbox-sync-");

511-

expect(output.args).toContain(`--capture-stdout=${path.join(repoRoot, ".artifacts/stdout.log")}`);

604+

expect(output.args).toContain(

605+

`--capture-stdout=${path.join(repoRoot, ".artifacts/stdout.log")}`,

606+

);

512607

expect(output.args).toContain(path.join(repoRoot, ".artifacts/stderr.log"));

513608

expect(output.args).toContain(`/tmp/proof=${path.join(repoRoot, ".artifacts/proof")}`);

514609

});