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

推荐订阅源

P
Proofpoint News Feed
V
V2EX
WordPress大学
WordPress大学
Google DeepMind News
Google DeepMind News
Martin Fowler
Martin Fowler
小众软件
小众软件
Blog — PlanetScale
Blog — PlanetScale
月光博客
月光博客
The Cloudflare Blog
T
Tailwind CSS Blog
H
Help Net Security
腾讯CDC
爱范儿
爱范儿
人人都是产品经理
人人都是产品经理
H
Hackread – Cybersecurity News, Data Breaches, AI and More
The GitHub Blog
The GitHub Blog
Microsoft Security Blog
Microsoft Security Blog
Stack Overflow Blog
Stack Overflow Blog
D
DataBreaches.Net
C
Check Point Blog
量子位
酷 壳 – CoolShell
酷 壳 – CoolShell
美团技术团队
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com

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
ci: bound install smoke docker builds · openclaw/openclaw...
steipete · 2026-04-30 · via Recent Commits to openclaw:main

@@ -107,23 +107,19 @@ jobs:

107107

with:

108108

max-cache-size-mb: 800000

109109110-

# Keep the Blacksmith builder hot across release runs. The image still

111-

# loads into the local Docker daemon for downstream smoke containers.

110+

# Keep release smoke builds bounded and log-producing. The Blacksmith

111+

# build action can leave jobs in-progress without step logs when a remote

112+

# builder stalls; an explicit buildx invocation fails closed instead.

112113

- name: Build root Dockerfile smoke image

113-

uses: useblacksmith/build-push-action@cbd1f60d194a98cb3be5523b15134501eaf0fbf3 # v2

114-

with:

115-

context: .

116-

file: ./Dockerfile

117-

cache-from: type=gha,scope=openclaw-dockerfile-smoke

118-

cache-to: type=gha,scope=openclaw-dockerfile-smoke,mode=max

119-

build-args: |

120-

OPENCLAW_EXTENSIONS=matrix

121-

tags: |

122-

openclaw-dockerfile-smoke:local

123-

openclaw-ext-smoke:local

124-

load: true

125-

push: false

126-

provenance: false

114+

run: |

115+

timeout 45m docker buildx build \

116+

--progress=plain \

117+

--load \

118+

--build-arg OPENCLAW_EXTENSIONS=matrix \

119+

-t openclaw-dockerfile-smoke:local \

120+

-t openclaw-ext-smoke:local \

121+

-f ./Dockerfile \

122+

.

127123128124

- name: Run root Dockerfile CLI smoke

129125

run: |

@@ -223,23 +219,18 @@ jobs:

223219

OPENCLAW_QR_SMOKE_FORCE_INSTALL: "1"

224220

run: bash scripts/e2e/qr-import-docker.sh

225221226-

# Build once with the matrix extension and tag both smoke names. This

227-

# keeps the build-arg coverage without a second Blacksmith build action.

222+

# Build once with the matrix extension and tag both smoke names. Use a

223+

# direct buildx command so release jobs emit Docker progress and time out.

228224

- name: Build root Dockerfile smoke image

229-

uses: useblacksmith/build-push-action@cbd1f60d194a98cb3be5523b15134501eaf0fbf3 # v2

230-

with:

231-

context: .

232-

file: ./Dockerfile

233-

cache-from: type=gha,scope=openclaw-dockerfile-smoke

234-

cache-to: type=gha,scope=openclaw-dockerfile-smoke,mode=max

235-

build-args: |

236-

OPENCLAW_EXTENSIONS=matrix

237-

tags: |

238-

openclaw-dockerfile-smoke:local

239-

openclaw-ext-smoke:local

240-

load: true

241-

push: false

242-

provenance: false

225+

run: |

226+

timeout 45m docker buildx build \

227+

--progress=plain \

228+

--load \

229+

--build-arg OPENCLAW_EXTENSIONS=matrix \

230+

-t openclaw-dockerfile-smoke:local \

231+

-t openclaw-ext-smoke:local \

232+

-f ./Dockerfile \

233+

.

243234244235

- name: Run root Dockerfile CLI smoke

245236

run: |

@@ -303,24 +294,22 @@ jobs:

303294

'

304295305296

- name: Build installer smoke image

306-

uses: useblacksmith/build-push-action@cbd1f60d194a98cb3be5523b15134501eaf0fbf3 # v2

307-

with:

308-

context: ./scripts/docker

309-

file: ./scripts/docker/install-sh-smoke/Dockerfile

310-

tags: openclaw-install-smoke:local

311-

load: true

312-

push: false

313-

provenance: false

297+

run: |

298+

timeout 20m docker buildx build \

299+

--progress=plain \

300+

--load \

301+

-t openclaw-install-smoke:local \

302+

-f ./scripts/docker/install-sh-smoke/Dockerfile \

303+

./scripts/docker

314304315305

- name: Build installer non-root image

316-

uses: useblacksmith/build-push-action@cbd1f60d194a98cb3be5523b15134501eaf0fbf3 # v2

317-

with:

318-

context: ./scripts/docker

319-

file: ./scripts/docker/install-sh-nonroot/Dockerfile

320-

tags: openclaw-install-nonroot:local

321-

load: true

322-

push: false

323-

provenance: false

306+

run: |

307+

timeout 20m docker buildx build \

308+

--progress=plain \

309+

--load \

310+

-t openclaw-install-nonroot:local \

311+

-f ./scripts/docker/install-sh-nonroot/Dockerfile \

312+

./scripts/docker

324313325314

- name: Setup Node environment for installer smoke

326315

uses: ./.github/actions/setup-node-env