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

推荐订阅源

G
Google Developers Blog
阮一峰的网络日志
阮一峰的网络日志
博客园 - 聂微东
F
Fortinet All Blogs
H
Help Net Security
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
D
DataBreaches.Net
MyScale Blog
MyScale Blog
B
Blog
I
InfoQ
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
GbyAI
GbyAI
Google DeepMind News
Google DeepMind News
IT之家
IT之家
The GitHub Blog
The GitHub Blog
有赞技术团队
有赞技术团队
博客园_首页
L
LangChain Blog
V
V2EX
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
T
The Blog of Author Tim Ferriss
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Microsoft Azure Blog
Microsoft Azure Blog
博客园 - Franky

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
fix(release): harden beta validation gates · openclaw/ope...
vincentkoc · 2026-06-14 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -1181,7 +1181,7 @@ jobs:

11811181

runtime_tool_coverage_release_checks:

11821182

name: Enforce QA Lab runtime tool coverage

11831183

needs: [resolve_target, qa_lab_runtime_parity_release_checks]

1184-

if: always() && contains(fromJSON('["all","qa","qa-parity"]'), needs.resolve_target.outputs.rerun_group)

1184+

if: contains(fromJSON('["all","qa","qa-parity"]'), needs.resolve_target.outputs.rerun_group)

11851185

runs-on: ubuntu-24.04

11861186

timeout-minutes: 15

11871187

permissions:

@@ -1204,13 +1204,35 @@ jobs:

12041204

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

12051205

install-bun: "true"

12061206
1207+

- name: Download runtime parity status

1208+

uses: actions/download-artifact@v8

1209+

with:

1210+

name: release-check-status-qa-runtime-parity-${{ needs.resolve_target.outputs.revision }}

1211+

path: .artifacts/release-check-status/

1212+
1213+

- name: Verify runtime parity producer status

1214+

id: verify_runtime_parity_status

1215+

shell: bash

1216+

run: |

1217+

set -euo pipefail

1218+

status_path=".artifacts/release-check-status/qa_lab_runtime_parity_release_checks.env"

1219+

status="$(sed -n 's/^status=//p' "$status_path" | tail -n 1)"

1220+

if [[ "$status" != "success" ]]; then

1221+

echo "Runtime parity producer status is ${status:-missing}; skipping coverage artifact consumer."

1222+

echo "ready=false" >> "$GITHUB_OUTPUT"

1223+

exit 0

1224+

fi

1225+

echo "ready=true" >> "$GITHUB_OUTPUT"

1226+
12071227

- name: Download runtime parity artifacts

1228+

if: steps.verify_runtime_parity_status.outputs.ready == 'true'

12081229

uses: actions/download-artifact@v8

12091230

with:

12101231

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

12111232

path: .artifacts/qa-e2e/

12121233
12131234

- name: Enforce standard runtime tool coverage

1235+

if: steps.verify_runtime_parity_status.outputs.ready == 'true'

12141236

run: |

12151237

set -euo pipefail

12161238

pnpm openclaw qa coverage \

Original file line numberDiff line numberDiff line change

@@ -28,6 +28,7 @@ const LIVE_VISION_MODEL = process.env.OPENCLAW_LIVE_OPENAI_VISION_MODEL?.trim()

2828

const liveEnabled = OPENAI_API_KEY.trim().length > 0 && process.env.OPENCLAW_LIVE_TEST === "1";

2929

const describeLive = liveEnabled ? describe : describe.skip;

3030

const EMPTY_AUTH_STORE = { version: 1, profiles: {} } as const;

31+

const LIVE_TTS_TIMEOUT_MS = 60_000;

3132

const ModelRegistryCtor = ModelRegistry as unknown as {

3233

new (authStorage: AuthStorage, modelsJsonPath?: string): ModelRegistry;

3334

};

@@ -139,7 +140,7 @@ function createLiveTtsConfig(): ResolvedTtsConfig {

139140

},

140141

personas: {},

141142

maxTextLength: 4_000,

142-

timeoutMs: 30_000,

143+

timeoutMs: LIVE_TTS_TIMEOUT_MS,

143144

};

144145

}

145146

@@ -264,7 +265,7 @@ describeLive("openai plugin live", () => {

264265

expect(telephony?.outputFormat).toBe("pcm");

265266

expect(telephony?.sampleRate).toBe(24_000);

266267

expect(telephony?.audioBuffer.byteLength).toBeGreaterThan(512);

267-

}, 45_000);

268+

}, 150_000);

268269
269270

it("transcribes synthesized speech through the registered media provider", async () => {

270271

const { speechProviders, mediaProviders } = await registerOpenAIPlugin();

@@ -297,7 +298,7 @@ describeLive("openai plugin live", () => {

297298

expect(text.length).toBeGreaterThan(0);

298299

expect(collapsedText).toContain("speech");

299300

expect(collapsedText).toMatch(/(?:check|okay|ok|transcription)/);

300-

}, 45_000);

301+

}, 120_000);

301302
302303

it("opens OpenAI realtime STT before sending audio", async () => {

303304

const { realtimeTranscriptionProviders } = await registerOpenAIPlugin();