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

推荐订阅源

Martin Fowler
Martin Fowler
D
DataBreaches.Net
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
The GitHub Blog
The GitHub Blog
Blog — PlanetScale
Blog — PlanetScale
Microsoft Security Blog
Microsoft Security Blog
A
About on SuperTechFans
Vercel News
Vercel News
L
LangChain Blog
B
Blog RSS Feed
Y
Y Combinator Blog
IT之家
IT之家
H
Hackread – Cybersecurity News, Data Breaches, AI and More
GbyAI
GbyAI
V
V2EX
博客园 - 三生石上(FineUI控件)
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
阮一峰的网络日志
阮一峰的网络日志
有赞技术团队
有赞技术团队
D
Docker
V
Visual Studio Blog
aimingoo的专栏
aimingoo的专栏
Last Week in AI
Last Week in AI
月光博客
月光博客

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
test(ci): harden release failure paths · openclaw/opencla...
steipete · 2026-04-29 · via Recent Commits to openclaw:main

File tree

  • .github/workflows

  • docs/concepts

  • extensions/qa-matrix/src/runners/contract

  • src/commands

Original file line numberDiff line numberDiff line change

@@ -656,6 +656,7 @@ jobs:

656656

shell: bash

657657

env:

658658

OPENCLAW_QA_REDACT_PUBLIC_METADATA: "1"

659+

OPENCLAW_QA_MATRIX_CANARY_TIMEOUT_MS: "90000"

659660

OPENCLAW_QA_MATRIX_NO_REPLY_WINDOW_MS: "3000"

660661

run: |

661662

set -euo pipefail

Original file line numberDiff line numberDiff line change

@@ -99,6 +99,7 @@ Pass `--scenario <id>` (repeatable) to run a hand-picked set; combine with `--pr

9999

| Variable | Default | Effect |

100100

| --------------------------------------- | ----------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |

101101

| `OPENCLAW_QA_MATRIX_TIMEOUT_MS` | `1800000` (30 min) | Hard upper bound on the entire run. |

102+

| `OPENCLAW_QA_MATRIX_CANARY_TIMEOUT_MS` | `45000` | Bound for the initial canary reply. Release CI raises this on shared runners so a slow first gateway turn does not fail before scenario coverage starts. |

102103

| `OPENCLAW_QA_MATRIX_NO_REPLY_WINDOW_MS` | `8000` | Quiet window for negative no-reply assertions. Clamped to `` the run timeout. |

103104

| `OPENCLAW_QA_MATRIX_CLEANUP_TIMEOUT_MS` | `90000` | Bound for Docker teardown. Failure surfaces include the recovery `docker compose ... down --remove-orphans` command. |

104105

| `OPENCLAW_QA_MATRIX_TUWUNEL_IMAGE` | `ghcr.io/matrix-construct/tuwunel:v1.5.1` | Override the homeserver image when validating against a different Tuwunel version. |

Original file line numberDiff line numberDiff line change

@@ -943,9 +943,8 @@ export async function runMatrixQaLive(params: {

943943

} finally {

944944

if (gatewayHarness) {

945945

try {

946-

const shouldPreserveGatewayDebugArtifacts = scenarioResults.some(

947-

(scenario) => scenario?.status === "fail",

948-

);

946+

const shouldPreserveGatewayDebugArtifacts =

947+

scenarioResults.some((scenario) => scenario?.status === "fail") || canaryFailed;

949948

preservedGatewayDebugDirPath = shouldPreserveGatewayDebugArtifacts

950949

? path.join(outputDir, "gateway-debug")

951950

: undefined;

Original file line numberDiff line numberDiff line change

@@ -112,7 +112,19 @@ describe("doctor command", () => {

112112

},

113113

]);

114114
115-

await doctorCommand(createDoctorRuntime(), { yes: true });

115+

const previousConfigWriteSupport =

116+

process.env.OPENCLAW_UPDATE_PARENT_SUPPORTS_DOCTOR_CONFIG_WRITE;

117+

process.env.OPENCLAW_UPDATE_PARENT_SUPPORTS_DOCTOR_CONFIG_WRITE = "1";

118+

try {

119+

await doctorCommand(createDoctorRuntime(), { yes: true });

120+

} finally {

121+

if (previousConfigWriteSupport === undefined) {

122+

delete process.env.OPENCLAW_UPDATE_PARENT_SUPPORTS_DOCTOR_CONFIG_WRITE;

123+

} else {

124+

process.env.OPENCLAW_UPDATE_PARENT_SUPPORTS_DOCTOR_CONFIG_WRITE =

125+

previousConfigWriteSupport;

126+

}

127+

}

116128
117129

const written = writeConfigFile.mock.calls.at(-1)?.[0] as Record<string, unknown>;

118130

const profiles = (written.auth as { profiles: Record<string, unknown> }).profiles;