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

推荐订阅源

V
Visual Studio Blog
罗磊的独立博客
宝玉的分享
宝玉的分享
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
V
V2EX
酷 壳 – CoolShell
酷 壳 – CoolShell
T
Tailwind CSS Blog
博客园_首页
量子位
月光博客
月光博客
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 司徒正美
人人都是产品经理
人人都是产品经理
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
爱范儿
爱范儿
S
SegmentFault 最新的问题
雷峰网
雷峰网
小众软件
小众软件
博客园 - 聂微东
美团技术团队
Apple Machine Learning Research
Apple Machine Learning Research
WordPress大学
WordPress大学
Jina AI
Jina AI
Hugging Face - Blog
Hugging Face - 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
docs: document release validation test workflows · opencl...
steipete · 2026-04-27 · via Recent Commits to openclaw:main

@@ -96,6 +96,92 @@ gh run view <run-id> --job <job-id> --log

9696

- For cancelled same-branch runs, confirm whether a newer run superseded it.

9797

- Fetch full logs only for failed or relevant jobs.

989899+

## GitHub Release Workflows

100+101+

Use the smallest workflow that proves the current risk. The full umbrella is

102+

available, but it is usually the last step after narrower proof, not the first

103+

rerun after a focused patch.

104+105+

### Full Release Validation

106+107+

`Full Release Validation` (`.github/workflows/full-release-validation.yml`) is

108+

the manual "everything before release" umbrella. It resolves a target ref, then

109+

dispatches:

110+111+

- manual `CI` for the full normal CI graph

112+

- `OpenClaw Release Checks` for install smoke, cross-OS release checks, live and

113+

E2E checks, Docker release-path suites, OpenWebUI, QA Lab, Matrix, and

114+

Telegram release lanes

115+

- optional post-publish Telegram E2E when a package spec is supplied

116+117+

Run it only when validating an actual release candidate, after broad shared CI

118+

or release orchestration changes, or when explicitly asked:

119+120+

```bash

121+

gh workflow run full-release-validation.yml \

122+

--repo openclaw/openclaw \

123+

--ref main \

124+

-f ref=<branch-or-sha> \

125+

-f workflow_ref=main \

126+

-f provider=openai \

127+

-f mode=both

128+

```

129+130+

If a full run is already active on a newer `origin/main`, prefer watching that

131+

run over dispatching a duplicate. If you accidentally dispatch a stale duplicate,

132+

cancel it and monitor the current run.

133+134+

### Release Checks

135+136+

`OpenClaw Release Checks` (`openclaw-release-checks.yml`) is the release child

137+

workflow. It is broader than normal CI but narrower than the umbrella because it

138+

does not dispatch the separate full normal CI child. Use it when release-path

139+

validation is needed without rerunning the entire umbrella.

140+141+

```bash

142+

gh workflow run openclaw-release-checks.yml \

143+

--repo openclaw/openclaw \

144+

--ref main \

145+

-f ref=<branch-or-sha> \

146+

-f provider=openai \

147+

-f mode=both

148+

```

149+150+

### Reusable Live/E2E Checks

151+152+

`OpenClaw Live And E2E Checks (Reusable)`

153+

(`openclaw-live-and-e2e-checks-reusable.yml`) is the preferred entry point for

154+

targeted live, Docker, model, and E2E proof. Inputs let you turn off unrelated

155+

lanes:

156+157+

```bash

158+

gh workflow run openclaw-live-and-e2e-checks-reusable.yml \

159+

--repo openclaw/openclaw \

160+

--ref main \

161+

-f ref=<sha> \

162+

-f include_repo_e2e=false \

163+

-f include_release_path_suites=false \

164+

-f include_openwebui=false \

165+

-f include_live_suites=true \

166+

-f live_models_only=true \

167+

-f live_model_providers=fireworks

168+

```

169+170+

Useful knobs:

171+172+

- `docker_lanes='<lane[,lane]>'`: run selected Docker scheduler lanes against

173+

prepared artifacts instead of the three release chunks.

174+

- `include_live_suites=false`: skip live/provider suites when testing Docker

175+

scheduler or release packaging only.

176+

- `live_models_only=true`: run only Docker live model coverage.

177+

- `live_model_providers=fireworks` (or comma/space separated providers): run one

178+

targeted Docker live model job instead of the full provider matrix.

179+

- blank `live_model_providers`: run the full live-model provider matrix.

180+181+

For model-list or provider-selection fixes, use `live_models_only=true` plus the

182+

specific `live_model_providers` allowlist. Confirm logs show the expected

183+

`OPENCLAW_LIVE_PROVIDERS` and selected model ids before declaring proof.

184+99185

## Docker

100186101187

Docker is expensive. First inspect the scheduler without running Docker: