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

推荐订阅源

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
test(scripts): route dockerfile metadata changes · opencl...
vincentkoc · 2026-06-21 · via Recent Commits to openclaw:main

@@ -427,8 +427,24 @@ const OFFICIAL_EXTERNAL_CATALOG_TEST_TARGETS = [

427427

"src/plugins/official-external-plugin-catalog.test.ts",

428428

"test/release-check.test.ts",

429429

];

430+

const DOCKERFILE_CACHE_AND_DIGEST_TEST_TARGETS = [

431+

"src/docker-build-cache.test.ts",

432+

"src/docker-image-digests.test.ts",

433+

];

434+

const ROOT_DOCKERFILE_TEST_TARGETS = [

435+

...DOCKERFILE_CACHE_AND_DIGEST_TEST_TARGETS,

436+

"src/dockerfile.test.ts",

437+

"test/scripts/test-install-sh-docker.test.ts",

438+

];

439+

const INSTALL_DOCKERFILE_TEST_TARGETS = [

440+

...DOCKERFILE_CACHE_AND_DIGEST_TEST_TARGETS,

441+

"test/scripts/test-install-sh-docker.test.ts",

442+

];

443+

const LIVE_MEDIA_RUNNER_IMAGE_TEST_TARGETS = ["test/scripts/package-acceptance-workflow.test.ts"];

430444

const TOOLING_SOURCE_TEST_TARGETS = new Map([

445+

["Dockerfile", ROOT_DOCKERFILE_TEST_TARGETS],

431446

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

447+

[".github/images/live-media-runner/Dockerfile", LIVE_MEDIA_RUNNER_IMAGE_TEST_TARGETS],

432448

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

433449

[

434450

".github/workflows/security-sensitive-guard.yml",

@@ -446,6 +462,7 @@ const TOOLING_SOURCE_TEST_TARGETS = new Map([

446462

".github/workflows/crabbox-hydrate.yml",

447463

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

448464

],

465+

[".github/workflows/live-media-runner-image.yml", LIVE_MEDIA_RUNNER_IMAGE_TEST_TARGETS],

449466

[

450467

".github/workflows/openclaw-release-checks.yml",

451468

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

@@ -830,13 +847,49 @@ const TOOLING_SOURCE_TEST_TARGETS = new Map([

830847

["scripts/lib/official-external-plugin-catalog.json", OFFICIAL_EXTERNAL_CATALOG_TEST_TARGETS],

831848

["scripts/lib/official-external-provider-catalog.json", OFFICIAL_EXTERNAL_CATALOG_TEST_TARGETS],

832849

["scripts/lib/direct-run.mjs", ["test/scripts/changed-lanes.test.ts"]],

850+

[

851+

"scripts/docker/cleanup-smoke/Dockerfile",

852+

[...DOCKERFILE_CACHE_AND_DIGEST_TEST_TARGETS, "test/scripts/docker-build-helper.test.ts"],

853+

],

833854

["scripts/docker/cleanup-smoke/run.sh", ["test/scripts/docker-build-helper.test.ts"]],

855+

["scripts/docker/install-sh-e2e/Dockerfile", INSTALL_DOCKERFILE_TEST_TARGETS],

834856

[

835857

"scripts/docker/install-sh-e2e/run.sh",

836858

["test/scripts/docker-build-helper.test.ts", "test/scripts/test-install-sh-docker.test.ts"],

837859

],

860+

["scripts/docker/install-sh-nonroot/Dockerfile", INSTALL_DOCKERFILE_TEST_TARGETS],

838861

["scripts/docker/install-sh-nonroot/run.sh", ["test/scripts/test-install-sh-docker.test.ts"]],

862+

["scripts/docker/install-sh-smoke/Dockerfile", INSTALL_DOCKERFILE_TEST_TARGETS],

839863

["scripts/docker/install-sh-smoke/run.sh", ["test/scripts/test-install-sh-docker.test.ts"]],

864+

[

865+

"scripts/docker/sandbox/Dockerfile",

866+

[...DOCKERFILE_CACHE_AND_DIGEST_TEST_TARGETS, "src/dockerfile.test.ts"],

867+

],

868+

[

869+

"scripts/docker/sandbox/Dockerfile.browser",

870+

[...DOCKERFILE_CACHE_AND_DIGEST_TEST_TARGETS, "src/agents/sandbox/browser.create.test.ts"],

871+

],

872+

["scripts/docker/sandbox/Dockerfile.common", ["src/docker-build-cache.test.ts"]],

873+

[

874+

"scripts/e2e/Dockerfile",

875+

[

876+

...DOCKERFILE_CACHE_AND_DIGEST_TEST_TARGETS,

877+

"test/scripts/docker-build-helper.test.ts",

878+

"test/scripts/docker-e2e-plan.test.ts",

879+

],

880+

],

881+

[

882+

"scripts/e2e/Dockerfile.qr-import",

883+

[...DOCKERFILE_CACHE_AND_DIGEST_TEST_TARGETS, "test/scripts/docker-build-helper.test.ts"],

884+

],

885+

[

886+

"scripts/e2e/plugin-binding-command-escape.Dockerfile",

887+

[

888+

"src/docker-image-digests.test.ts",

889+

"test/scripts/docker-build-helper.test.ts",

890+

"test/scripts/docker-e2e-plan.test.ts",

891+

],

892+

],

840893

["scripts/lib/docker-e2e-container.sh", ["test/scripts/docker-build-helper.test.ts"]],

841894

["scripts/lib/docker-e2e-package.sh", ["test/scripts/docker-build-helper.test.ts"]],

842895

[