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

推荐订阅源

Engineering at Meta
Engineering at Meta
J
Java Code Geeks
I
InfoQ
腾讯CDC
Vercel News
Vercel News
IT之家
IT之家
V
Visual Studio Blog
P
Proofpoint News Feed
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
G
Google Developers Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园 - 叶小钗
有赞技术团队
有赞技术团队
月光博客
月光博客
Martin Fowler
Martin Fowler
量子位
L
LangChain Blog
B
Blog
Last Week in AI
Last Week in AI
博客园 - 司徒正美
Microsoft Security Blog
Microsoft Security Blog
博客园 - 聂微东
Microsoft Azure Blog
Microsoft Azure Blog
A
About on SuperTechFans

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(ci): make full validation rerun-aware · openclaw/open...
steipete · 2026-04-27 · via Recent Commits to openclaw:main

@@ -109,8 +109,13 @@ jobs:

109109

needs: [resolve_target]

110110

runs-on: ubuntu-24.04

111111

timeout-minutes: 240

112+

outputs:

113+

run_id: ${{ steps.dispatch.outputs.run_id }}

114+

url: ${{ steps.dispatch.outputs.url }}

115+

conclusion: ${{ steps.dispatch.outputs.conclusion }}

112116

steps:

113117

- name: Dispatch and monitor CI

118+

id: dispatch

114119

env:

115120

GH_TOKEN: ${{ github.token }}

116121

TARGET_REF: ${{ inputs.ref }}

@@ -146,6 +151,7 @@ jobs:

146151

fi

147152148153

echo "Dispatched ${workflow}: https://github.com/${GITHUB_REPOSITORY}/actions/runs/${run_id}"

154+

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

149155150156

while true; do

151157

status="$(gh run view "$run_id" --json status --jq '.status')"

@@ -158,9 +164,10 @@ jobs:

158164

conclusion="$(gh run view "$run_id" --json conclusion --jq '.conclusion')"

159165

url="$(gh run view "$run_id" --json url --jq '.url')"

160166

echo "${workflow} finished with ${conclusion}: ${url}"

167+

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

168+

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

161169

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

162-

gh run view "$run_id" --json jobs --jq '.jobs[] | select(.conclusion != "success" and .conclusion != "skipped") | {name, conclusion, url}'

163-

exit 1

170+

gh run view "$run_id" --json jobs --jq '.jobs[] | select(.conclusion != "success" and .conclusion != "skipped") | {name, conclusion, url}' || true

164171

fi

165172

}

166173

@@ -178,8 +185,13 @@ jobs:

178185

needs: [resolve_target]

179186

runs-on: ubuntu-24.04

180187

timeout-minutes: 720

188+

outputs:

189+

run_id: ${{ steps.dispatch.outputs.run_id }}

190+

url: ${{ steps.dispatch.outputs.url }}

191+

conclusion: ${{ steps.dispatch.outputs.conclusion }}

181192

steps:

182193

- name: Dispatch and monitor release checks

194+

id: dispatch

183195

env:

184196

GH_TOKEN: ${{ github.token }}

185197

TARGET_REF: ${{ inputs.ref }}

@@ -217,6 +229,7 @@ jobs:

217229

fi

218230219231

echo "Dispatched ${workflow}: https://github.com/${GITHUB_REPOSITORY}/actions/runs/${run_id}"

232+

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

220233221234

while true; do

222235

status="$(gh run view "$run_id" --json status --jq '.status')"

@@ -229,9 +242,10 @@ jobs:

229242

conclusion="$(gh run view "$run_id" --json conclusion --jq '.conclusion')"

230243

url="$(gh run view "$run_id" --json url --jq '.url')"

231244

echo "${workflow} finished with ${conclusion}: ${url}"

245+

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

246+

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

232247

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

233-

gh run view "$run_id" --json jobs --jq '.jobs[] | select(.conclusion != "success" and .conclusion != "skipped") | {name, conclusion, url}'

234-

exit 1

248+

gh run view "$run_id" --json jobs --jq '.jobs[] | select(.conclusion != "success" and .conclusion != "skipped") | {name, conclusion, url}' || true

235249

fi

236250

}

237251

@@ -255,8 +269,13 @@ jobs:

255269

if: inputs.npm_telegram_package_spec != ''

256270

runs-on: ubuntu-24.04

257271

timeout-minutes: 120

272+

outputs:

273+

run_id: ${{ steps.dispatch.outputs.run_id }}

274+

url: ${{ steps.dispatch.outputs.url }}

275+

conclusion: ${{ steps.dispatch.outputs.conclusion }}

258276

steps:

259277

- name: Dispatch and monitor npm Telegram E2E

278+

id: dispatch

260279

env:

261280

GH_TOKEN: ${{ github.token }}

262281

WORKFLOW_REF: ${{ inputs.workflow_ref }}

@@ -293,6 +312,7 @@ jobs:

293312

fi

294313295314

echo "Dispatched npm-telegram-beta-e2e.yml: https://github.com/${GITHUB_REPOSITORY}/actions/runs/${run_id}"

315+

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

296316297317

while true; do

298318

status="$(gh run view "$run_id" --json status --jq '.status')"

@@ -305,9 +325,10 @@ jobs:

305325

conclusion="$(gh run view "$run_id" --json conclusion --jq '.conclusion')"

306326

url="$(gh run view "$run_id" --json url --jq '.url')"

307327

echo "npm-telegram-beta-e2e.yml finished with ${conclusion}: ${url}"

328+

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

329+

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

308330

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

309-

gh run view "$run_id" --json jobs --jq '.jobs[] | select(.conclusion != "success" and .conclusion != "skipped") | {name, conclusion, url}'

310-

exit 1

331+

gh run view "$run_id" --json jobs --jq '.jobs[] | select(.conclusion != "success" and .conclusion != "skipped") | {name, conclusion, url}' || true

311332

fi

312333313334

summary:

@@ -347,7 +368,7 @@ jobs:

347368

--arg release_id "$release_id" \

348369

--arg release_ref "$TARGET_REF" \

349370

--arg package_spec "$PACKAGE_SPEC" \

350-

--arg notes "Automatically requested by Full Release Validation ${GITHUB_RUN_ID_VALUE} after child workflows completed." \

371+

--arg notes "Automatically requested by Full Release Validation ${GITHUB_RUN_ID_VALUE} after child workflows completed; the parent summary re-checks current child run conclusions." \

351372

'{

352373

event_type: "openclaw_full_release_validation_completed",

353374

client_payload: {

@@ -370,22 +391,51 @@ jobs:

370391371392

- name: Verify child workflow results

372393

env:

373-

NORMAL_CI_RESULT: ${{ needs.normal_ci.result }}

374-

RELEASE_CHECKS_RESULT: ${{ needs.release_checks.result }}

394+

GH_TOKEN: ${{ github.token }}

395+

NORMAL_CI_RUN_ID: ${{ needs.normal_ci.outputs.run_id }}

396+

RELEASE_CHECKS_RUN_ID: ${{ needs.release_checks.outputs.run_id }}

397+

NPM_TELEGRAM_RUN_ID: ${{ needs.npm_telegram.outputs.run_id }}

375398

NPM_TELEGRAM_RESULT: ${{ needs.npm_telegram.result }}

376399

run: |

377400

set -euo pipefail

378-

failed=0

379-

for item in \

380-

"normal_ci=${NORMAL_CI_RESULT}" \

381-

"release_checks=${RELEASE_CHECKS_RESULT}" \

382-

"npm_telegram=${NPM_TELEGRAM_RESULT}"

383-

do

384-

name="${item%%=*}"

385-

result="${item#*=}"

386-

if [[ "$result" != "success" && "$result" != "skipped" ]]; then

387-

echo "::error::${name} ended with ${result}"

388-

failed=1

401+402+

check_child() {

403+

local label="$1"

404+

local run_id="$2"

405+

local required="$3"

406+407+

if [[ -z "${run_id// }" ]]; then

408+

if [[ "$required" == "0" ]]; then

409+

echo "${label}: skipped"

410+

return 0

411+

fi

412+

echo "::error::${label} did not record a child run id."

413+

return 1

389414

fi

390-

done

415+416+

local status conclusion url attempt

417+

status="$(gh run view "$run_id" --json status --jq '.status')"

418+

conclusion="$(gh run view "$run_id" --json conclusion --jq '.conclusion')"

419+

url="$(gh run view "$run_id" --json url --jq '.url')"

420+

attempt="$(gh run view "$run_id" --json attempt --jq '.attempt')"

421+

echo "${label}: ${status}/${conclusion} attempt ${attempt}: ${url}"

422+423+

if [[ "$status" != "completed" || "$conclusion" != "success" ]]; then

424+

echo "::error::${label} child run ended with ${status}/${conclusion}: ${url}"

425+

gh run view "$run_id" --json jobs --jq '.jobs[] | select(.conclusion != "success" and .conclusion != "skipped") | {name, status, conclusion, url}' || true

426+

return 1

427+

fi

428+

}

429+430+

failed=0

431+432+

check_child "normal_ci" "$NORMAL_CI_RUN_ID" 1 || failed=1

433+

check_child "release_checks" "$RELEASE_CHECKS_RUN_ID" 1 || failed=1

434+435+

if [[ "$NPM_TELEGRAM_RESULT" == "skipped" && -z "${NPM_TELEGRAM_RUN_ID// }" ]]; then

436+

check_child "npm_telegram" "" 0 || failed=1

437+

else

438+

check_child "npm_telegram" "$NPM_TELEGRAM_RUN_ID" 1 || failed=1

439+

fi

440+391441

exit "$failed"