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

推荐订阅源

V
Visual Studio Blog
Recent Announcements
Recent Announcements
雷峰网
雷峰网
The GitHub Blog
The GitHub Blog
罗磊的独立博客
月光博客
月光博客
J
Java Code Geeks
A
About on SuperTechFans
Microsoft Security Blog
Microsoft Security Blog
D
Docker
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
F
Fortinet All Blogs
U
Unit 42
C
Check Point Blog
Martin Fowler
Martin Fowler
有赞技术团队
有赞技术团队
博客园 - 叶小钗
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
酷 壳 – CoolShell
酷 壳 – CoolShell
Blog — PlanetScale
Blog — PlanetScale
大猫的无限游戏
大猫的无限游戏
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
阮一峰的网络日志
阮一峰的网络日志
MyScale Blog
MyScale 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(ci): disable install smoke Docker build cache · openc...
clawsweeper · 2026-04-30 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -54,7 +54,6 @@ jobs:

5454

run_bun_global_install_smoke: ${{ steps.manifest.outputs.run_bun_global_install_smoke }}

5555

target_sha: ${{ steps.manifest.outputs.target_sha }}

5656

dockerfile_image: ${{ steps.manifest.outputs.dockerfile_image }}

57-

dockerfile_cache_scope: ${{ steps.manifest.outputs.dockerfile_cache_scope }}

5857

steps:

5958

- name: Checkout

6059

uses: actions/checkout@v6

@@ -81,7 +80,6 @@ jobs:

8180

target_sha="$(git rev-parse HEAD)"

8281

owner="$(printf '%s' "${GITHUB_REPOSITORY_OWNER:-openclaw}" | tr '[:upper:]' '[:lower:]')"

8382

dockerfile_image="ghcr.io/${owner}/openclaw-dockerfile-smoke:${target_sha}"

84-

dockerfile_cache_scope="openclaw-dockerfile-smoke"

8583

if [ "$event_name" = "schedule" ]; then

8684

run_bun_global_install_smoke=true

8785

elif [ "$event_name" = "workflow_dispatch" ] || [ "$event_name" = "workflow_call" ]; then

@@ -97,7 +95,6 @@ jobs:

9795

echo "run_bun_global_install_smoke=$run_bun_global_install_smoke"

9896

echo "target_sha=$target_sha"

9997

echo "dockerfile_image=$dockerfile_image"

100-

echo "dockerfile_cache_scope=$dockerfile_cache_scope"

10198

} >> "$GITHUB_OUTPUT"

10299
103100

install-smoke-fast:

@@ -254,14 +251,11 @@ jobs:

254251

- name: Build and push root Dockerfile smoke image

255252

if: steps.existing.outputs.exists != 'true'

256253

env:

257-

CACHE_SCOPE: ${{ needs.preflight.outputs.dockerfile_cache_scope }}

258254

IMAGE_REF: ${{ needs.preflight.outputs.dockerfile_image }}

259255

run: |

260256

timeout 45m docker buildx build \

261257

--progress=plain \

262258

--push \

263-

--cache-from "type=gha,scope=${CACHE_SCOPE}" \

264-

--cache-to "type=gha,scope=${CACHE_SCOPE},mode=max" \

265259

--build-arg OPENCLAW_EXTENSIONS=matrix \

266260

-t "$IMAGE_REF" \

267261

-f ./Dockerfile \

Original file line numberDiff line numberDiff line change

@@ -211,8 +211,9 @@ describe("bun global install smoke", () => {

211211

expect(workflow).toContain("timeout 45m docker buildx build");

212212

expect(workflow).toContain("--progress=plain");

213213

expect(workflow).toContain("--load");

214-

expect(workflow).not.toContain("cache-from: type=gha,scope=openclaw-dockerfile-smoke");

215-

expect(workflow).not.toContain("cache-to: type=gha,scope=openclaw-dockerfile-smoke");

214+

expect(workflow).not.toContain("--cache-from");

215+

expect(workflow).not.toContain("--cache-to");

216+

expect(workflow).not.toContain("type=gha");

216217

expect(workflow).toContain('OPENCLAW_INSTALL_SMOKE_SKIP_NPM_GLOBAL: "1"');

217218

expect(releaseChecks).toContain("install_smoke_release_checks:");

218219

expect(releaseChecks).toContain("uses: ./.github/workflows/install-smoke.yml");