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

推荐订阅源

雷峰网
雷峰网
爱范儿
爱范儿
宝玉的分享
宝玉的分享
Apple Machine Learning Research
Apple Machine Learning Research
博客园 - Franky
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 三生石上(FineUI控件)
人人都是产品经理
人人都是产品经理
阮一峰的网络日志
阮一峰的网络日志
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Last Week in AI
Last Week in AI
博客园 - 聂微东
大猫的无限游戏
大猫的无限游戏
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
罗磊的独立博客
博客园 - 叶小钗
WordPress大学
WordPress大学
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
酷 壳 – CoolShell
酷 壳 – CoolShell
小众软件
小众软件
博客园 - 司徒正美
博客园 - 【当耐特】
IT之家
IT之家

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: add Matrix QA profiles · openclaw/openclaw@6987132
steipete · 2026-04-27 · via Recent Commits to openclaw:main

@@ -18,6 +18,27 @@ on:

1818

description: Optional comma-separated Discord scenario ids

1919

required: false

2020

type: string

21+

matrix_profile:

22+

description: Matrix QA profile for the live Matrix lane

23+

required: false

24+

default: all

25+

type: choice

26+

options:

27+

- fast

28+

- all

29+

- transport

30+

- media

31+

- e2ee-smoke

32+

- e2ee-deep

33+

- 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"

21422243

permissions:

2344

contents: read

@@ -199,6 +220,7 @@ jobs:

199220

run_live_matrix:

200221

name: Run Matrix live QA lane

201222

needs: [authorize_actor, validate_selected_ref]

223+

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

202224

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

203225

timeout-minutes: 60

204226

environment: qa-live-shared

@@ -236,7 +258,9 @@ jobs:

236258

shell: bash

237259

env:

238260

OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}

261+

INPUT_MATRIX_PROFILE: ${{ github.event_name == 'workflow_dispatch' && inputs.matrix_profile || 'fast' }}

239262

OPENCLAW_QA_REDACT_PUBLIC_METADATA: "1"

263+

OPENCLAW_QA_MATRIX_NO_REPLY_WINDOW_MS: "3000"

240264

run: |

241265

set -euo pipefail

242266

@@ -249,7 +273,9 @@ jobs:

249273

--provider-mode live-frontier \

250274

--model "${OPENCLAW_CI_OPENAI_MODEL}" \

251275

--alt-model "${OPENCLAW_CI_OPENAI_MODEL}" \

252-

--fast

276+

--profile "${INPUT_MATRIX_PROFILE}" \

277+

--fast \

278+

--fail-fast

253279254280

- name: Upload Matrix QA artifacts

255281

if: always()

@@ -260,6 +286,83 @@ jobs:

260286

retention-days: 14

261287

if-no-files-found: warn

262288289+

run_live_matrix_sharded:

290+

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

291+

needs: [authorize_actor, validate_selected_ref]

292+

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

293+

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

294+

timeout-minutes: 60

295+

environment: qa-live-shared

296+

strategy:

297+

fail-fast: false

298+

matrix:

299+

profile:

300+

- transport

301+

- media

302+

- e2ee-smoke

303+

- e2ee-deep

304+

- e2ee-cli

305+

steps:

306+

- name: Checkout selected ref

307+

uses: actions/checkout@v6

308+

with:

309+

ref: ${{ needs.validate_selected_ref.outputs.selected_sha }}

310+

fetch-depth: 1

311+312+

- name: Setup Node environment

313+

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

314+

with:

315+

node-version: ${{ env.NODE_VERSION }}

316+

pnpm-version: ${{ env.PNPM_VERSION }}

317+

install-bun: "true"

318+319+

- name: Validate required QA credential env

320+

env:

321+

OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}

322+

shell: bash

323+

run: |

324+

set -euo pipefail

325+326+

if [[ -z "${OPENAI_API_KEY:-}" ]]; then

327+

echo "Missing required OPENAI_API_KEY." >&2

328+

exit 1

329+

fi

330+331+

- name: Build private QA runtime

332+

run: pnpm build

333+334+

- name: Run Matrix live lane shard

335+

id: run_lane

336+

shell: bash

337+

env:

338+

OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}

339+

OPENCLAW_QA_REDACT_PUBLIC_METADATA: "1"

340+

OPENCLAW_QA_MATRIX_NO_REPLY_WINDOW_MS: "3000"

341+

run: |

342+

set -euo pipefail

343+344+

output_dir=".artifacts/qa-e2e/matrix-live-${{ matrix.profile }}-${GITHUB_RUN_ID}-${GITHUB_RUN_ATTEMPT}"

345+

echo "output_dir=${output_dir}" >> "$GITHUB_OUTPUT"

346+347+

pnpm openclaw qa matrix \

348+

--repo-root . \

349+

--output-dir "${output_dir}" \

350+

--provider-mode live-frontier \

351+

--model "${OPENCLAW_CI_OPENAI_MODEL}" \

352+

--alt-model "${OPENCLAW_CI_OPENAI_MODEL}" \

353+

--profile "${{ matrix.profile }}" \

354+

--fast \

355+

--fail-fast

356+357+

- name: Upload Matrix QA shard artifacts

358+

if: always()

359+

uses: actions/upload-artifact@v4

360+

with:

361+

name: qa-live-matrix-${{ matrix.profile }}-${{ github.run_id }}-${{ github.run_attempt }}

362+

path: ${{ steps.run_lane.outputs.output_dir }}

363+

retention-days: 14

364+

if-no-files-found: warn

365+263366

run_live_telegram:

264367

name: Run Telegram live QA lane with Convex leases

265368

needs: [authorize_actor, validate_selected_ref]