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

推荐订阅源

月光博客
月光博客
MyScale Blog
MyScale Blog
博客园 - Franky
The Cloudflare Blog
IT之家
IT之家
Blog — PlanetScale
Blog — PlanetScale
博客园 - 聂微东
WordPress大学
WordPress大学
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
T
The Blog of Author Tim Ferriss
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
罗磊的独立博客
Google DeepMind News
Google DeepMind News
P
Proofpoint News Feed
Martin Fowler
Martin Fowler
aimingoo的专栏
aimingoo的专栏
J
Java Code Geeks
腾讯CDC
雷峰网
雷峰网
Microsoft Azure Blog
Microsoft Azure Blog
G
Google Developers Blog
博客园 - 【当耐特】
美团技术团队
云风的 BLOG
云风的 BLOG

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: speed up release validation · openclaw/openclaw@e5452a9
steipete · 2026-04-28 · via Recent Commits to openclaw:main

@@ -26,6 +26,15 @@ on:

2626

- fresh

2727

- upgrade

2828

- both

29+

release_profile:

30+

description: Release coverage profile for live/Docker/provider breadth

31+

required: false

32+

default: full

33+

type: choice

34+

options:

35+

- minimum

36+

- stable

37+

- full

2938

rerun_group:

3039

description: Validation group to run

3140

required: false

@@ -239,6 +248,7 @@ jobs:

239248

CHILD_WORKFLOW_REF: ${{ github.ref_name }}

240249

PROVIDER: ${{ inputs.provider }}

241250

MODE: ${{ inputs.mode }}

251+

RELEASE_PROFILE: ${{ inputs.release_profile }}

242252

RERUN_GROUP: ${{ inputs.rerun_group }}

243253

run: |

244254

set -euo pipefail

@@ -304,6 +314,7 @@ jobs:

304314

echo "- Target SHA: \`${TARGET_SHA}\`"

305315

echo "- Provider: \`${PROVIDER}\`"

306316

echo "- Cross-OS mode: \`${MODE}\`"

317+

echo "- Release profile: \`${RELEASE_PROFILE}\`"

307318

echo "- Rerun group: \`${RERUN_GROUP}\`"

308319

} >> "$GITHUB_STEP_SUMMARY"

309320

@@ -316,6 +327,7 @@ jobs:

316327

-f ref="$TARGET_SHA" \

317328

-f provider="$PROVIDER" \

318329

-f mode="$MODE" \

330+

-f release_profile="$RELEASE_PROFILE" \

319331

-f rerun_group="$child_rerun_group"

320332321333

npm_telegram:

@@ -490,6 +502,34 @@ jobs:

490502

fi

491503

}

492504505+

summarize_child_timing() {

506+

local label="$1"

507+

local run_id="$2"

508+

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

509+

return 0

510+

fi

511+512+

{

513+

echo

514+

echo "### Slowest jobs: ${label}"

515+

echo

516+

gh run view "$run_id" --json jobs --jq '

517+

def ts: fromdateiso8601;

518+

"| Job | Result | Minutes |",

519+

"| --- | --- | ---: |",

520+

([.jobs[]

521+

| select(.startedAt != "0001-01-01T00:00:00Z" and .completedAt != "0001-01-01T00:00:00Z")

522+

| . + {durationMin: ((((.completedAt | ts) - (.startedAt | ts)) / 60) * 10 | round / 10)}

523+

| {name, conclusion, durationMin}]

524+

| sort_by(.durationMin)

525+

| reverse

526+

| .[0:10]

527+

| map("| `" + (.name | gsub("\\|"; "\\|")) + "` | `" + ((.conclusion // "") | tostring) + "` | " + (.durationMin | tostring) + " |")

528+

| .[])

529+

' || echo "_Unable to summarize jobs for run ${run_id}._"

530+

} >> "$GITHUB_STEP_SUMMARY"

531+

}

532+493533

failed=0

494534495535

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

@@ -510,4 +550,8 @@ jobs:

510550

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

511551

fi

512552553+

summarize_child_timing "normal_ci" "$NORMAL_CI_RUN_ID"

554+

summarize_child_timing "release_checks" "$RELEASE_CHECKS_RUN_ID"

555+

summarize_child_timing "npm_telegram" "$NPM_TELEGRAM_RUN_ID"

556+513557

exit "$failed"