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

推荐订阅源

Vercel News
Vercel News
博客园 - 司徒正美
C
Check Point Blog
G
Google Developers Blog
The GitHub Blog
The GitHub Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
有赞技术团队
有赞技术团队
P
Proofpoint News Feed
IT之家
IT之家
B
Blog
博客园_首页
量子位
MongoDB | Blog
MongoDB | Blog
博客园 - Franky
J
Java Code Geeks
H
Help Net Security
A
About on SuperTechFans
Apple Machine Learning Research
Apple Machine Learning Research
Jina AI
Jina AI
D
DataBreaches.Net
Y
Y Combinator Blog
大猫的无限游戏
大猫的无限游戏
云风的 BLOG
云风的 BLOG
Google DeepMind News
Google DeepMind News

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: shard install smoke release checks · openclaw/opencla...
steipete · 2026-04-30 · via Recent Commits to openclaw:main

@@ -610,20 +610,64 @@ jobs:

610610

return 1

611611

fi

612612613-

local status conclusion url attempt

614-

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

615-

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

616-

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

617-

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

613+

local run_json status conclusion url attempt

614+

run_json="$(gh run view "$run_id" --json status,conclusion,url,attempt,jobs)"

615+

status="$(jq -r '.status' <<< "$run_json")"

616+

conclusion="$(jq -r '.conclusion' <<< "$run_json")"

617+

url="$(jq -r '.url' <<< "$run_json")"

618+

attempt="$(jq -r '.attempt' <<< "$run_json")"

618619

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

619620620621

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

621622

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

622-

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

623+

jq '.jobs[] | select(.conclusion != "success" and .conclusion != "skipped") | {name, status, conclusion, url}' <<< "$run_json" || true

623624

return 1

624625

fi

625626

}

626627628+

append_child_overview() {

629+

{

630+

echo

631+

echo "### Child workflow overview"

632+

echo

633+

echo "| Child | Result | Minutes | Run |"

634+

echo "| --- | --- | ---: | --- |"

635+

} >> "$GITHUB_STEP_SUMMARY"

636+637+

append_child_row() {

638+

local label="$1"

639+

local run_id="$2"

640+

local result="$3"

641+642+

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

643+

echo "| \`${label}\` | \`${result}\` | | skipped |" >> "$GITHUB_STEP_SUMMARY"

644+

return 0

645+

fi

646+647+

local run_json row

648+

run_json="$(gh run view "$run_id" --json status,conclusion,url,createdAt,updatedAt)"

649+

row="$(

650+

jq -r --arg label "$label" '

651+

def ts: fromdateiso8601;

652+

. as $run |

653+

($run.createdAt // "") as $created |

654+

($run.updatedAt // "") as $updated |

655+

(if ($created | length) > 0 and ($updated | length) > 0

656+

then (((($updated | ts) - ($created | ts)) / 60) * 10 | round / 10 | tostring)

657+

else ""

658+

end) as $minutes |

659+

"| `" + $label + "` | `" + ($run.status // "") + "/" + ($run.conclusion // "") + "` | " + $minutes + " | [run](" + ($run.url // "") + ") |"

660+

' <<< "$run_json"

661+

)"

662+

echo "$row" >> "$GITHUB_STEP_SUMMARY"

663+

}

664+665+

append_child_row "normal_ci" "$NORMAL_CI_RUN_ID" "$NORMAL_CI_RESULT"

666+

append_child_row "plugin_prerelease" "$PLUGIN_PRERELEASE_RUN_ID" "$PLUGIN_PRERELEASE_RESULT"

667+

append_child_row "release_checks" "$RELEASE_CHECKS_RUN_ID" "$RELEASE_CHECKS_RESULT"

668+

append_child_row "npm_telegram" "$NPM_TELEGRAM_RUN_ID" "$NPM_TELEGRAM_RESULT"

669+

}

670+627671

summarize_child_timing() {

628672

local label="$1"

629673

local run_id="$2"

@@ -675,6 +719,8 @@ jobs:

675719676720

failed=0

677721722+

append_child_overview

723+678724

if [[ "$NORMAL_CI_RESULT" == "skipped" && -z "${NORMAL_CI_RUN_ID// }" ]]; then

679725

check_child "normal_ci" "" 0 || failed=1

680726

else