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

推荐订阅源

小众软件
小众软件
V
Visual Studio Blog
博客园 - 三生石上(FineUI控件)
Last Week in AI
Last Week in AI
Blog — PlanetScale
Blog — PlanetScale
爱范儿
爱范儿
J
Java Code Geeks
A
About on SuperTechFans
F
Fortinet All Blogs
B
Blog
aimingoo的专栏
aimingoo的专栏
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Engineering at Meta
Engineering at Meta
Y
Y Combinator Blog
有赞技术团队
有赞技术团队
G
Google Developers Blog
Apple Machine Learning Research
Apple Machine Learning Research
V
V2EX
博客园_首页
博客园 - 叶小钗
罗磊的独立博客
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
D
Docker
云风的 BLOG
云风的 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
ci: fan out qa lab lanes · openclaw/openclaw@c78562d
steipete · 2026-04-23 · via Recent Commits to openclaw:main

@@ -1,4 +1,4 @@

1-

name: QA-Lab - Live Telegram, Live Frontier

1+

name: QA-Lab - All Lanes

2233

on:

44

schedule:

@@ -20,7 +20,7 @@ permissions:

2020

pull-requests: read

21212222

concurrency:

23-

group: qa-lab-live-telegram-live-frontier-${{ github.event_name == 'workflow_dispatch' && inputs.ref || github.sha }}

23+

group: qa-lab-all-lanes-${{ github.event_name == 'workflow_dispatch' && inputs.ref || github.sha }}

2424

cancel-in-progress: false

25252626

env:

@@ -115,6 +115,140 @@ jobs:

115115

echo "Trust reason: \`$trusted_reason\`"

116116

} >> "$GITHUB_STEP_SUMMARY"

117117118+

run_mock_parity:

119+

name: Run QA Lab parity gate

120+

needs: [validate_selected_ref]

121+

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

122+

timeout-minutes: 30

123+

env:

124+

QA_PARITY_CONCURRENCY: "1"

125+

OPENCLAW_QA_TRANSPORT_READY_TIMEOUT_MS: "180000"

126+

OPENAI_API_KEY: ""

127+

ANTHROPIC_API_KEY: ""

128+

OPENCLAW_LIVE_OPENAI_KEY: ""

129+

OPENCLAW_LIVE_ANTHROPIC_KEY: ""

130+

OPENCLAW_LIVE_GEMINI_KEY: ""

131+

OPENCLAW_LIVE_SETUP_TOKEN_VALUE: ""

132+

steps:

133+

- name: Checkout selected ref

134+

uses: actions/checkout@v6

135+

with:

136+

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

137+

fetch-depth: 1

138+139+

- name: Setup Node environment

140+

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

141+

with:

142+

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

143+

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

144+

install-bun: "true"

145+146+

- name: Build private QA runtime

147+

run: pnpm build

148+149+

- name: Run GPT-5.4 lane

150+

run: |

151+

pnpm openclaw qa suite \

152+

--provider-mode mock-openai \

153+

--parity-pack agentic \

154+

--concurrency "${QA_PARITY_CONCURRENCY}" \

155+

--model openai/gpt-5.4 \

156+

--alt-model openai/gpt-5.4-alt \

157+

--output-dir .artifacts/qa-e2e/gpt54

158+159+

- name: Run Opus 4.6 lane

160+

run: |

161+

pnpm openclaw qa suite \

162+

--provider-mode mock-openai \

163+

--parity-pack agentic \

164+

--concurrency "${QA_PARITY_CONCURRENCY}" \

165+

--model anthropic/claude-opus-4-6 \

166+

--alt-model anthropic/claude-sonnet-4-6 \

167+

--output-dir .artifacts/qa-e2e/opus46

168+169+

- name: Generate parity report

170+

run: |

171+

pnpm openclaw qa parity-report \

172+

--repo-root . \

173+

--candidate-summary .artifacts/qa-e2e/gpt54/qa-suite-summary.json \

174+

--baseline-summary .artifacts/qa-e2e/opus46/qa-suite-summary.json \

175+

--candidate-label openai/gpt-5.4 \

176+

--baseline-label anthropic/claude-opus-4-6 \

177+

--output-dir .artifacts/qa-e2e/parity

178+179+

- name: Upload parity artifacts

180+

if: always()

181+

uses: actions/upload-artifact@v4

182+

with:

183+

name: qa-parity-${{ github.run_id }}-${{ github.run_attempt }}

184+

path: .artifacts/qa-e2e/

185+

retention-days: 14

186+

if-no-files-found: warn

187+188+

run_live_matrix:

189+

name: Run Matrix live QA lane

190+

needs: [authorize_actor, validate_selected_ref]

191+

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

192+

timeout-minutes: 60

193+

environment: qa-live-shared

194+

steps:

195+

- name: Checkout selected ref

196+

uses: actions/checkout@v6

197+

with:

198+

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

199+

fetch-depth: 1

200+201+

- name: Setup Node environment

202+

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

203+

with:

204+

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

205+

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

206+

install-bun: "true"

207+208+

- name: Validate required QA credential env

209+

env:

210+

OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}

211+

shell: bash

212+

run: |

213+

set -euo pipefail

214+215+

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

216+

echo "Missing required OPENAI_API_KEY." >&2

217+

exit 1

218+

fi

219+220+

- name: Build private QA runtime

221+

run: pnpm build

222+223+

- name: Run Matrix live lane

224+

id: run_lane

225+

shell: bash

226+

env:

227+

OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}

228+

OPENCLAW_QA_REDACT_PUBLIC_METADATA: "1"

229+

run: |

230+

set -euo pipefail

231+232+

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

233+

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

234+235+

pnpm openclaw qa matrix \

236+

--repo-root . \

237+

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

238+

--provider-mode live-frontier \

239+

--model openai/gpt-5.4 \

240+

--alt-model openai/gpt-5.4 \

241+

--fast

242+243+

- name: Upload Matrix QA artifacts

244+

if: always()

245+

uses: actions/upload-artifact@v4

246+

with:

247+

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

248+

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

249+

retention-days: 14

250+

if-no-files-found: warn

251+118252

run_live_telegram:

119253

name: Run Telegram live QA lane with Convex leases

120254

needs: [authorize_actor, validate_selected_ref]