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

推荐订阅源

让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
T
The Blog of Author Tim Ferriss
博客园 - 司徒正美
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
有赞技术团队
有赞技术团队
量子位
S
SegmentFault 最新的问题
博客园 - 聂微东
博客园 - 【当耐特】
J
Java Code Geeks
美团技术团队
Hugging Face - Blog
Hugging Face - Blog
H
Help Net Security
V
V2EX
人人都是产品经理
人人都是产品经理
博客园 - Franky
罗磊的独立博客
Engineering at Meta
Engineering at Meta
A
About on SuperTechFans
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
酷 壳 – CoolShell
酷 壳 – CoolShell
云风的 BLOG
云风的 BLOG
Y
Y Combinator Blog
Apple Machine Learning Research
Apple Machine Learning Research

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: always shard full Matrix QA · openclaw/openclaw@679e476
steipete · 2026-04-27 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -77,8 +77,8 @@ pnpm openclaw qa matrix --profile fast --fail-fast

7777

- `transport`, `media`, `e2ee-smoke`, `e2ee-deep`, `e2ee-cli`: sharded full

7878

Matrix coverage.

7979

- `QA-Lab - All Lanes` uses explicit `fast` Matrix on scheduled runs. Manual

80-

dispatch keeps `matrix_profile=all` as the default and can shard full Matrix

81-

with `matrix_profile=all` and `matrix_shards=true`.

80+

dispatch keeps `matrix_profile=all` as the default and always shards that full

81+

Matrix selection.

8282
8383

## QA credentials and 1Password

8484
Original file line numberDiff line numberDiff line change

@@ -195,10 +195,10 @@ default is the fast release path. Use explicit profiles:

195195

window when paired with fast or sharded gates

196196
197197

`QA-Lab - All Lanes` uses explicit fast Matrix on scheduled runs; manual

198-

dispatch keeps `matrix_profile=all` as the default and can shard full Matrix

199-

with `matrix_profile=all` and `matrix_shards=true`. `OpenClaw Release Checks`

200-

uses explicit fast Matrix; run the sharded all-lanes workflow when release

201-

investigation needs full Matrix media/E2EE inventory.

198+

dispatch keeps `matrix_profile=all` as the default and always shards that full

199+

Matrix selection. `OpenClaw Release Checks` uses explicit fast Matrix; run the

200+

all-lanes workflow when release investigation needs full Matrix media/E2EE

201+

inventory.

202202
203203

### Reusable Live/E2E Checks

204204
Original file line numberDiff line numberDiff line change

@@ -31,14 +31,6 @@ on:

3131

- e2ee-smoke

3232

- e2ee-deep

3333

- e2ee-cli

34-

matrix_shards:

35-

description: Shard matrix_profile=all into parallel Matrix profile jobs

36-

required: false

37-

default: "false"

38-

type: choice

39-

options:

40-

- "false"

41-

- "true"

4234
4335

permissions:

4436

contents: read

@@ -220,7 +212,7 @@ jobs:

220212

run_live_matrix:

221213

name: Run Matrix live QA lane

222214

needs: [authorize_actor, validate_selected_ref]

223-

if: ${{ !(github.event_name == 'workflow_dispatch' && inputs.matrix_profile == 'all' && inputs.matrix_shards == 'true') }}

215+

if: ${{ !(github.event_name == 'workflow_dispatch' && inputs.matrix_profile == 'all') }}

224216

runs-on: blacksmith-32vcpu-ubuntu-2404

225217

timeout-minutes: 60

226218

environment: qa-live-shared

@@ -289,7 +281,7 @@ jobs:

289281

run_live_matrix_sharded:

290282

name: Run Matrix live QA lane (${{ matrix.profile }})

291283

needs: [authorize_actor, validate_selected_ref]

292-

if: ${{ github.event_name == 'workflow_dispatch' && inputs.matrix_profile == 'all' && inputs.matrix_shards == 'true' }}

284+

if: ${{ github.event_name == 'workflow_dispatch' && inputs.matrix_profile == 'all' }}

293285

runs-on: blacksmith-32vcpu-ubuntu-2404

294286

timeout-minutes: 60

295287

environment: qa-live-shared

Original file line numberDiff line numberDiff line change

@@ -151,10 +151,10 @@ manual dispatch; it fans out the mock parity gate, live Matrix lane, and live

151151

Telegram and Discord lanes as parallel jobs. The live jobs use the

152152

`qa-live-shared` environment, and Telegram/Discord use Convex leases. Matrix

153153

uses `--profile fast --fail-fast` for scheduled and release gates while the CLI

154-

default and manual workflow input remain `all`; manual all-lanes dispatch can

155-

shard full Matrix coverage into `transport`, `media`, `e2ee-smoke`,

156-

`e2ee-deep`, and `e2ee-cli` jobs. `OpenClaw Release Checks` also runs the

157-

release-critical QA Lab lanes before release approval.

154+

default and manual workflow input remain `all`; manual `matrix_profile=all`

155+

dispatch always shards full Matrix coverage into `transport`, `media`,

156+

`e2ee-smoke`, `e2ee-deep`, and `e2ee-cli` jobs. `OpenClaw Release Checks` also

157+

runs the release-critical QA Lab lanes before release approval.

158158
159159

The `Duplicate PRs After Merge` workflow is a manual maintainer workflow for

160160

post-land duplicate cleanup. It defaults to dry-run and only closes explicitly

Original file line numberDiff line numberDiff line change

@@ -141,8 +141,8 @@ the maintainer-only release runbook.

141141

live Matrix profile and Telegram QA lane before release approval. The live

142142

lanes use the `qa-live-shared` environment; Telegram also uses Convex CI

143143

credential leases. Run the manual `QA-Lab - All Lanes` workflow with

144-

`matrix_profile=all` and `matrix_shards=true` when you want full Matrix

145-

transport, media, and E2EE inventory in parallel.

144+

`matrix_profile=all` when you want full Matrix transport, media, and E2EE

145+

inventory; the workflow always shards that full Matrix selection in parallel.

146146

- Cross-OS install and upgrade runtime validation is dispatched from the

147147

private caller workflow

148148

`openclaw/releases-private/.github/workflows/openclaw-cross-os-release-checks.yml`,