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

推荐订阅源

宝玉的分享
宝玉的分享
B
Blog RSS Feed
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
MyScale Blog
MyScale Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
S
SegmentFault 最新的问题
Y
Y Combinator Blog
月光博客
月光博客
IT之家
IT之家
T
Tailwind CSS Blog
Last Week in AI
Last Week in AI
L
LangChain Blog
博客园_首页
MongoDB | Blog
MongoDB | Blog
P
Proofpoint News Feed
博客园 - Franky
WordPress大学
WordPress大学
云风的 BLOG
云风的 BLOG
M
MIT News - Artificial intelligence
V
Visual Studio Blog
小众软件
小众软件
博客园 - 叶小钗
博客园 - 三生石上(FineUI控件)
N
Netflix TechBlog - Medium

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: centralize workflow openai model defaults (#70845) · ...
Patrick-Eric · 2026-04-25 · via Recent Commits to openclaw:main

@@ -31,6 +31,7 @@ env:

3131

FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: "true"

3232

NODE_VERSION: "24.x"

3333

PNPM_VERSION: "10.33.0"

34+

OPENCLAW_CI_OPENAI_MODEL: ${{ vars.OPENCLAW_CI_OPENAI_MODEL }}

3435

OPENCLAW_BUILD_PRIVATE_QA: "1"

3536

OPENCLAW_ENABLE_PRIVATE_QA_CLI: "1"

3637

@@ -156,13 +157,13 @@ jobs:

156157

- name: Build private QA runtime

157158

run: pnpm build

158159159-

- name: Run GPT-5.4 lane

160+

- name: Run OpenAI candidate lane

160161

run: |

161162

pnpm openclaw qa suite \

162163

--provider-mode mock-openai \

163164

--parity-pack agentic \

164165

--concurrency "${QA_PARITY_CONCURRENCY}" \

165-

--model openai/gpt-5.4 \

166+

--model "${OPENCLAW_CI_OPENAI_MODEL}" \

166167

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

167168

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

168169

@@ -182,7 +183,7 @@ jobs:

182183

--repo-root . \

183184

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

184185

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

185-

--candidate-label openai/gpt-5.4 \

186+

--candidate-label "${OPENCLAW_CI_OPENAI_MODEL}" \

186187

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

187188

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

188189

@@ -246,8 +247,8 @@ jobs:

246247

--repo-root . \

247248

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

248249

--provider-mode live-frontier \

249-

--model openai/gpt-5.4 \

250-

--alt-model openai/gpt-5.4 \

250+

--model "${OPENCLAW_CI_OPENAI_MODEL}" \

251+

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

251252

--fast

252253253254

- name: Upload Matrix QA artifacts

@@ -335,8 +336,8 @@ jobs:

335336

--repo-root . \

336337

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

337338

--provider-mode live-frontier \

338-

--model openai/gpt-5.4 \

339-

--alt-model openai/gpt-5.4 \

339+

--model "${OPENCLAW_CI_OPENAI_MODEL}" \

340+

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

340341

--fast \

341342

--credential-source convex \

342343

--credential-role ci \