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

推荐订阅源

Apple Machine Learning Research
Apple Machine Learning Research
J
Java Code Geeks
博客园 - 聂微东
Microsoft Azure Blog
Microsoft Azure Blog
量子位
T
Tailwind CSS Blog
Vercel News
Vercel News
I
InfoQ
Stack Overflow Blog
Stack Overflow Blog
U
Unit 42
Engineering at Meta
Engineering at Meta
L
LangChain Blog
大猫的无限游戏
大猫的无限游戏
D
Docker
博客园_首页
P
Proofpoint News Feed
月光博客
月光博客
T
The Blog of Author Tim Ferriss
MyScale Blog
MyScale Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
Martin Fowler
Martin Fowler
腾讯CDC
N
Netflix TechBlog - Medium
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More

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: record tested ref in performance reports · openclaw/o...
steipete · 2026-05-03 · via Recent Commits to openclaw:main

@@ -5,6 +5,11 @@ on:

55

- cron: "11 5 * * *"

66

workflow_dispatch:

77

inputs:

8+

target_ref:

9+

description: OpenClaw ref to benchmark; defaults to the workflow ref

10+

required: false

11+

default: ""

12+

type: string

813

profile:

914

description: Kova profile to run

1015

required: false

@@ -92,6 +97,7 @@ jobs:

9297

SUMMARY_DIR: ${{ github.workspace }}/.artifacts/kova/summaries

9398

SOURCE_PERF_DIR: ${{ github.workspace }}/.artifacts/openclaw-performance/source/${{ matrix.lane }}

9499

LANE_ID: ${{ matrix.lane }}

100+

TARGET_REF: ${{ inputs.target_ref || github.ref_name }}

95101

PROFILE: ${{ inputs.profile || 'diagnostic' }}

96102

REQUESTED_REPEAT: ${{ inputs.repeat || '3' }}

97103

FAIL_ON_REGRESSION: ${{ inputs.fail_on_regression || 'false' }}

@@ -139,9 +145,25 @@ jobs:

139145

if: steps.lane.outputs.run == 'true'

140146

uses: actions/checkout@v6

141147

with:

148+

ref: ${{ inputs.target_ref || github.ref }}

142149

fetch-depth: 1

143150

persist-credentials: false

144151152+

- name: Record tested revision

153+

if: steps.lane.outputs.run == 'true'

154+

shell: bash

155+

run: |

156+

set -euo pipefail

157+

tested_sha="$(git rev-parse HEAD)"

158+

echo "TESTED_REF=${TARGET_REF}" >> "$GITHUB_ENV"

159+

echo "TESTED_SHA=${tested_sha}" >> "$GITHUB_ENV"

160+

{

161+

echo "Tested ref: ${TARGET_REF}"

162+

echo "Tested SHA: ${tested_sha}"

163+

echo "Workflow ref: ${GITHUB_REF_NAME}"

164+

echo "Workflow SHA: ${GITHUB_SHA}"

165+

} >> "$GITHUB_STEP_SUMMARY"

166+145167

- name: Set up Node environment

146168

if: steps.lane.outputs.run == 'true'

147169

uses: ./.github/actions/setup-node-env

@@ -281,7 +303,7 @@ jobs:

281303282304

kova report bundle "$report_json" --output-dir "$BUNDLE_DIR" --json | tee "$BUNDLE_DIR/bundle.json"

283305284-

ref_slug="$(printf '%s' "${GITHUB_REF_NAME}" | tr -c 'A-Za-z0-9._-' '-')"

306+

ref_slug="$(printf '%s' "${TESTED_REF}" | tr -c 'A-Za-z0-9._-' '-')"

285307

run_slug="${GITHUB_RUN_ID}-${GITHUB_RUN_ATTEMPT}"

286308

report_url=""

287309

if [[ "${CLAWGRIT_REPORTS_TOKEN_PRESENT:-false}" == "true" ]]; then

@@ -293,6 +315,23 @@ jobs:

293315

summary_args+=(--report-url "$report_url")

294316

fi

295317

"${summary_args[@]}"

318+

cat >> "$summary_path" <<EOF

319+320+

## Test scope

321+322+

- Repository: ${GITHUB_REPOSITORY}

323+

- Tested ref: ${TESTED_REF}

324+

- Tested SHA: ${TESTED_SHA}

325+

- Workflow ref: ${GITHUB_REF_NAME}

326+

- Workflow SHA: ${GITHUB_SHA}

327+

- Kova repository: ${KOVA_REPOSITORY}

328+

- Kova ref: ${KOVA_REF}

329+

- Kova profile: ${PROFILE}

330+

- Lane auth: ${AUTH_MODE}

331+

- Lane model: ${PERFORMANCE_MODEL_ID}

332+

- Lane repeat: ${repeat}

333+

- Include filters: ${INCLUDE_FILTERS}

334+

EOF

296335

cat "$summary_path" >> "$GITHUB_STEP_SUMMARY"

297336298337

if [[ "$FAIL_ON_REGRESSION" == "true" && "$status" != "0" ]]; then

@@ -438,7 +477,7 @@ jobs:

438477

run: |

439478

set -euo pipefail

440479

reports_root=".artifacts/clawgrit-reports"

441-

ref_slug="$(printf '%s' "${GITHUB_REF_NAME}" | tr -c 'A-Za-z0-9._-' '-')"

480+

ref_slug="$(printf '%s' "${TESTED_REF}" | tr -c 'A-Za-z0-9._-' '-')"

442481

run_slug="${GITHUB_RUN_ID}-${GITHUB_RUN_ATTEMPT}"

443482

dest="${reports_root}/openclaw-performance/${ref_slug}/${run_slug}/${LANE_ID}"

444483

mkdir -p "$dest"

@@ -466,8 +505,12 @@ jobs:

466505

cat > "${reports_root}/openclaw-performance/${ref_slug}/latest-${LANE_ID}.json" <<EOF

467506

{

468507

"repository": "${GITHUB_REPOSITORY}",

469-

"ref": "${GITHUB_REF_NAME}",

470-

"sha": "${GITHUB_SHA}",

508+

"ref": "${TESTED_REF}",

509+

"sha": "${TESTED_SHA}",

510+

"tested_ref": "${TESTED_REF}",

511+

"tested_sha": "${TESTED_SHA}",

512+

"workflow_ref": "${GITHUB_REF_NAME}",

513+

"workflow_sha": "${GITHUB_SHA}",

471514

"workflow": "${GITHUB_WORKFLOW}",

472515

"run_id": "${GITHUB_RUN_ID}",

473516

"run_attempt": "${GITHUB_RUN_ATTEMPT}",

@@ -483,5 +526,5 @@ jobs:

483526

echo "No clawgrit report changes to publish."

484527

exit 0

485528

fi

486-

git -C "$reports_root" commit -m "perf: add OpenClaw ${LANE_ID} report ${GITHUB_SHA::12}"

529+

git -C "$reports_root" commit -m "perf: add OpenClaw ${LANE_ID} report ${TESTED_SHA::12}"

487530

git -C "$reports_root" push origin HEAD:main