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

推荐订阅源

D
Docker
V
V2EX
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
云风的 BLOG
云风的 BLOG
Blog — PlanetScale
Blog — PlanetScale
Recent Announcements
Recent Announcements
Last Week in AI
Last Week in AI
博客园 - Franky
Microsoft Security Blog
Microsoft Security Blog
Hugging Face - Blog
Hugging Face - Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Vercel News
Vercel News
MyScale Blog
MyScale Blog
大猫的无限游戏
大猫的无限游戏
罗磊的独立博客
H
Help Net Security
月光博客
月光博客
Martin Fowler
Martin Fowler
博客园 - 【当耐特】
宝玉的分享
宝玉的分享
P
Proofpoint News Feed
GbyAI
GbyAI
腾讯CDC
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More

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: schedule qa lab gates · openclaw/openclaw@db332aa
steipete · 2026-04-23 · via Recent Commits to openclaw:main

@@ -32,6 +32,8 @@ concurrency:

32323333

env:

3434

FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: "true"

35+

NODE_VERSION: "24.x"

36+

PNPM_VERSION: "10.33.0"

35373638

jobs:

3739

resolve_target:

@@ -121,7 +123,7 @@ jobs:

121123

echo "- Validated SHA: \`${RELEASE_SHA}\`"

122124

echo "- Cross-OS provider: \`${RELEASE_PROVIDER}\`"

123125

echo "- Cross-OS mode: \`${RELEASE_MODE}\`"

124-

echo "- This run will execute cross-OS release validation plus the non-Parallels Docker/live/openwebui coverage from the CI migration plan."

126+

echo "- This run will execute cross-OS release validation, QA Lab parity/live lanes, and the non-Parallels Docker/live/openwebui coverage from the CI migration plan."

125127

} >> "$GITHUB_STEP_SUMMARY"

126128127129

cross_os_release_checks:

@@ -197,3 +199,161 @@ jobs:

197199

OPENCLAW_CLAUDE_SETTINGS_JSON: ${{ secrets.OPENCLAW_CLAUDE_SETTINGS_JSON }}

198200

OPENCLAW_CLAUDE_SETTINGS_LOCAL_JSON: ${{ secrets.OPENCLAW_CLAUDE_SETTINGS_LOCAL_JSON }}

199201

OPENCLAW_GEMINI_SETTINGS_JSON: ${{ secrets.OPENCLAW_GEMINI_SETTINGS_JSON }}

202+203+

qa_lab_parity_release_checks:

204+

name: Run QA Lab parity gate

205+

needs: [resolve_target]

206+

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

207+

timeout-minutes: 30

208+

permissions:

209+

contents: read

210+

env:

211+

QA_PARITY_CONCURRENCY: "1"

212+

OPENCLAW_QA_TRANSPORT_READY_TIMEOUT_MS: "180000"

213+

OPENAI_API_KEY: ""

214+

ANTHROPIC_API_KEY: ""

215+

OPENCLAW_LIVE_OPENAI_KEY: ""

216+

OPENCLAW_LIVE_ANTHROPIC_KEY: ""

217+

OPENCLAW_LIVE_GEMINI_KEY: ""

218+

OPENCLAW_LIVE_SETUP_TOKEN_VALUE: ""

219+

OPENCLAW_BUILD_PRIVATE_QA: "1"

220+

OPENCLAW_ENABLE_PRIVATE_QA_CLI: "1"

221+

steps:

222+

- name: Checkout selected ref

223+

uses: actions/checkout@v6

224+

with:

225+

ref: ${{ needs.resolve_target.outputs.ref }}

226+

fetch-depth: 1

227+228+

- name: Setup Node environment

229+

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

230+

with:

231+

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

232+

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

233+

install-bun: "true"

234+235+

- name: Build private QA runtime

236+

run: pnpm build

237+238+

- name: Run GPT-5.4 lane

239+

run: |

240+

pnpm openclaw qa suite \

241+

--provider-mode mock-openai \

242+

--parity-pack agentic \

243+

--concurrency "${QA_PARITY_CONCURRENCY}" \

244+

--model openai/gpt-5.4 \

245+

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

246+

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

247+248+

- name: Run Opus 4.6 lane

249+

run: |

250+

pnpm openclaw qa suite \

251+

--provider-mode mock-openai \

252+

--parity-pack agentic \

253+

--concurrency "${QA_PARITY_CONCURRENCY}" \

254+

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

255+

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

256+

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

257+258+

- name: Generate parity report

259+

run: |

260+

pnpm openclaw qa parity-report \

261+

--repo-root . \

262+

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

263+

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

264+

--candidate-label openai/gpt-5.4 \

265+

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

266+

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

267+268+

- name: Upload parity artifacts

269+

if: always()

270+

uses: actions/upload-artifact@v4

271+

with:

272+

name: release-qa-parity-${{ needs.resolve_target.outputs.sha }}

273+

path: .artifacts/qa-e2e/

274+

retention-days: 14

275+

if-no-files-found: warn

276+277+

qa_live_telegram_release_checks:

278+

name: Run QA Lab live Telegram lane

279+

needs: [resolve_target]

280+

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

281+

timeout-minutes: 60

282+

permissions:

283+

contents: read

284+

pull-requests: read

285+

environment: qa-live-shared

286+

env:

287+

OPENCLAW_BUILD_PRIVATE_QA: "1"

288+

OPENCLAW_ENABLE_PRIVATE_QA_CLI: "1"

289+

steps:

290+

- name: Checkout selected ref

291+

uses: actions/checkout@v6

292+

with:

293+

ref: ${{ needs.resolve_target.outputs.ref }}

294+

fetch-depth: 1

295+296+

- name: Setup Node environment

297+

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

298+

with:

299+

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

300+

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

301+

install-bun: "true"

302+303+

- name: Validate required QA credential env

304+

env:

305+

OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}

306+

OPENCLAW_QA_CONVEX_SITE_URL: ${{ secrets.OPENCLAW_QA_CONVEX_SITE_URL }}

307+

OPENCLAW_QA_CONVEX_SECRET_CI: ${{ secrets.OPENCLAW_QA_CONVEX_SECRET_CI }}

308+

shell: bash

309+

run: |

310+

set -euo pipefail

311+312+

require_var() {

313+

local key="$1"

314+

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

315+

echo "Missing required ${key}." >&2

316+

exit 1

317+

fi

318+

}

319+320+

require_var OPENAI_API_KEY

321+

require_var OPENCLAW_QA_CONVEX_SITE_URL

322+

require_var OPENCLAW_QA_CONVEX_SECRET_CI

323+324+

- name: Build private QA runtime

325+

run: pnpm build

326+327+

- name: Run Telegram live lane

328+

id: run_lane

329+

shell: bash

330+

env:

331+

OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}

332+

OPENCLAW_QA_CONVEX_SITE_URL: ${{ secrets.OPENCLAW_QA_CONVEX_SITE_URL }}

333+

OPENCLAW_QA_CONVEX_SECRET_CI: ${{ secrets.OPENCLAW_QA_CONVEX_SECRET_CI }}

334+

OPENCLAW_QA_REDACT_PUBLIC_METADATA: "1"

335+

OPENCLAW_QA_TELEGRAM_CAPTURE_CONTENT: "1"

336+

run: |

337+

set -euo pipefail

338+339+

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

340+

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

341+342+

pnpm openclaw qa telegram \

343+

--repo-root . \

344+

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

345+

--provider-mode live-frontier \

346+

--model openai/gpt-5.4 \

347+

--alt-model openai/gpt-5.4 \

348+

--fast \

349+

--credential-source convex \

350+

--credential-role ci

351+352+

- name: Upload Telegram QA artifacts

353+

if: always()

354+

uses: actions/upload-artifact@v4

355+

with:

356+

name: release-qa-live-telegram-${{ needs.resolve_target.outputs.sha }}

357+

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

358+

retention-days: 14

359+

if-no-files-found: warn