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

推荐订阅源

aimingoo的专栏
aimingoo的专栏
Y
Y Combinator Blog
云风的 BLOG
云风的 BLOG
Microsoft Azure Blog
Microsoft Azure Blog
腾讯CDC
T
The Blog of Author Tim Ferriss
P
Proofpoint News Feed
Hugging Face - Blog
Hugging Face - Blog
博客园_首页
小众软件
小众软件
美团技术团队
Martin Fowler
Martin Fowler
爱范儿
爱范儿
有赞技术团队
有赞技术团队
博客园 - 【当耐特】
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Microsoft Security Blog
Microsoft Security Blog
宝玉的分享
宝玉的分享
J
Java Code Geeks
B
Blog
V
V2EX
Stack Overflow Blog
Stack Overflow Blog
B
Blog RSS Feed
博客园 - Franky

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: add runner fallback timing telemetry · openclaw/openc...
steipete · 2026-05-07 · via Recent Commits to openclaw:main

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

3636

# work fan out from a single source of truth.

3737

preflight:

3838

permissions:

39+

actions: read

3940

contents: read

4041

if: github.event_name != 'pull_request' || !github.event.pull_request.draft

4142

runs-on: ubuntu-24.04

@@ -75,6 +76,12 @@ jobs:

7576

run_macos_swift: ${{ steps.manifest.outputs.run_macos_swift }}

7677

run_android_job: ${{ steps.manifest.outputs.run_android_job }}

7778

android_matrix: ${{ steps.manifest.outputs.android_matrix }}

79+

runner_4vcpu_ubuntu: ${{ steps.runner_labels.outputs.runner_4vcpu_ubuntu }}

80+

runner_8vcpu_ubuntu: ${{ steps.runner_labels.outputs.runner_8vcpu_ubuntu }}

81+

runner_16vcpu_ubuntu: ${{ steps.runner_labels.outputs.runner_16vcpu_ubuntu }}

82+

runner_16vcpu_windows: ${{ steps.runner_labels.outputs.runner_16vcpu_windows }}

83+

runner_6vcpu_macos: ${{ steps.runner_labels.outputs.runner_6vcpu_macos }}

84+

runner_12vcpu_macos: ${{ steps.runner_labels.outputs.runner_12vcpu_macos }}

7885

steps:

7986

- name: Checkout

8087

uses: actions/checkout@v6

@@ -295,6 +302,13 @@ jobs:

295302

}

296303

EOF

297304305+

- name: Select runner labels

306+

id: runner_labels

307+

env:

308+

GITHUB_TOKEN: ${{ github.token }}

309+

OPENCLAW_CI_BLACKSMITH_FALLBACK: "true"

310+

run: node scripts/ci-runner-labels.mjs

311+298312

# Run the fast security/SCM checks in parallel with scope detection so the

299313

# main Node jobs do not have to wait for Python/pre-commit setup.

300314

security-scm-fast:

@@ -452,7 +466,7 @@ jobs:

452466

contents: read

453467

needs: [preflight]

454468

if: needs.preflight.outputs.run_build_artifacts == 'true'

455-

runs-on: ${{ github.repository == 'openclaw/openclaw' && 'blacksmith-8vcpu-ubuntu-2404' || 'ubuntu-24.04' }}

469+

runs-on: ${{ github.repository == 'openclaw/openclaw' && needs.preflight.outputs.runner_8vcpu_ubuntu || 'ubuntu-24.04' }}

456470

timeout-minutes: 20

457471

outputs:

458472

channels-result: ${{ steps.built_artifact_checks.outputs['channels-result'] }}

@@ -651,7 +665,7 @@ jobs:

651665

name: ${{ matrix.check_name }}

652666

needs: [preflight]

653667

if: needs.preflight.outputs.run_checks_fast_core == 'true'

654-

runs-on: ${{ github.repository == 'openclaw/openclaw' && 'blacksmith-4vcpu-ubuntu-2404' || 'ubuntu-24.04' }}

668+

runs-on: ${{ github.repository == 'openclaw/openclaw' && needs.preflight.outputs.runner_4vcpu_ubuntu || 'ubuntu-24.04' }}

655669

timeout-minutes: 60

656670

strategy:

657671

fail-fast: false

@@ -740,13 +754,67 @@ jobs:

740754

;;

741755

esac

742756757+

ci-timings-summary:

758+

permissions:

759+

actions: read

760+

contents: read

761+

name: ci-timings-summary

762+

needs:

763+

- preflight

764+

- security-fast

765+

- build-artifacts

766+

- checks-fast-core

767+

- checks-fast-plugin-contracts

768+

- checks-fast-channel-contracts

769+

- checks-fast-protocol

770+

- checks

771+

- checks-node-compat

772+

- checks-node-core-test

773+

- check

774+

- check-additional

775+

- build-smoke

776+

- check-docs

777+

- skills-python

778+

- checks-windows

779+

- macos-node

780+

- macos-swift

781+

- android

782+

if: ${{ !cancelled() && always() && (github.event_name != 'pull_request' || !github.event.pull_request.draft) }}

783+

runs-on: ubuntu-24.04

784+

timeout-minutes: 5

785+

steps:

786+

- name: Checkout

787+

uses: actions/checkout@v6

788+

with:

789+

ref: ${{ needs.preflight.outputs.checkout_revision || github.sha }}

790+

fetch-depth: 1

791+

fetch-tags: false

792+

persist-credentials: false

793+

submodules: false

794+795+

- name: Write CI timing summary

796+

env:

797+

GITHUB_REPOSITORY: ${{ github.repository }}

798+

GH_TOKEN: ${{ github.token }}

799+

RUN_ID: ${{ github.run_id }}

800+

run: |

801+

node scripts/ci-run-timings.mjs "$RUN_ID" --limit 25 > ci-timings-summary.txt

802+

cat ci-timings-summary.txt >> "$GITHUB_STEP_SUMMARY"

803+804+

- name: Upload CI timing summary

805+

uses: actions/upload-artifact@v7

806+

with:

807+

name: ci-timings-summary

808+

path: ci-timings-summary.txt

809+

retention-days: 14

810+743811

checks-fast-plugin-contracts-shard:

744812

permissions:

745813

contents: read

746814

name: ${{ matrix.checkName }}

747815

needs: [preflight]

748816

if: needs.preflight.outputs.run_plugin_contracts_shards == 'true'

749-

runs-on: ${{ github.repository == 'openclaw/openclaw' && 'blacksmith-4vcpu-ubuntu-2404' || 'ubuntu-24.04' }}

817+

runs-on: ${{ github.repository == 'openclaw/openclaw' && needs.preflight.outputs.runner_4vcpu_ubuntu || 'ubuntu-24.04' }}

750818

timeout-minutes: 60

751819

strategy:

752820

fail-fast: false

@@ -1055,7 +1123,7 @@ jobs:

10551123

name: checks-node-compat-node22

10561124

needs: [preflight]

10571125

if: needs.preflight.outputs.run_build_artifacts == 'true' && github.event_name == 'workflow_dispatch'

1058-

runs-on: ${{ github.repository == 'openclaw/openclaw' && 'blacksmith-4vcpu-ubuntu-2404' || 'ubuntu-24.04' }}

1126+

runs-on: ${{ github.repository == 'openclaw/openclaw' && needs.preflight.outputs.runner_4vcpu_ubuntu || 'ubuntu-24.04' }}

10591127

timeout-minutes: 60

10601128

steps:

10611129

- name: Checkout

@@ -1132,7 +1200,7 @@ jobs:

11321200

name: ${{ matrix.check_name }}

11331201

needs: [preflight]

11341202

if: needs.preflight.outputs.run_checks_node_core_nondist == 'true'

1135-

runs-on: ${{ github.repository == 'openclaw/openclaw' && (matrix.runner || 'ubuntu-24.04') || 'ubuntu-24.04' }}

1203+

runs-on: ${{ github.repository != 'openclaw/openclaw' && 'ubuntu-24.04' || matrix.runner == 'blacksmith-4vcpu-ubuntu-2404' && needs.preflight.outputs.runner_4vcpu_ubuntu || matrix.runner == 'blacksmith-8vcpu-ubuntu-2404' && needs.preflight.outputs.runner_8vcpu_ubuntu || matrix.runner == 'blacksmith-16vcpu-ubuntu-2404' && needs.preflight.outputs.runner_16vcpu_ubuntu || matrix.runner || 'ubuntu-24.04' }}

11361204

timeout-minutes: 60

11371205

strategy:

11381206

fail-fast: false

@@ -1300,7 +1368,7 @@ jobs:

13001368

name: ${{ matrix.check_name }}

13011369

needs: [preflight]

13021370

if: ${{ !cancelled() && always() && needs.preflight.outputs.run_check == 'true' }}

1303-

runs-on: ${{ github.repository == 'openclaw/openclaw' && matrix.runner || 'ubuntu-24.04' }}

1371+

runs-on: ${{ github.repository != 'openclaw/openclaw' && 'ubuntu-24.04' || matrix.runner == 'blacksmith-4vcpu-ubuntu-2404' && needs.preflight.outputs.runner_4vcpu_ubuntu || matrix.runner == 'blacksmith-8vcpu-ubuntu-2404' && needs.preflight.outputs.runner_8vcpu_ubuntu || matrix.runner == 'blacksmith-16vcpu-ubuntu-2404' && needs.preflight.outputs.runner_16vcpu_ubuntu || matrix.runner || 'ubuntu-24.04' }}

13041372

timeout-minutes: 20

13051373

strategy:

13061374

fail-fast: false

@@ -1461,7 +1529,7 @@ jobs:

14611529

name: ${{ matrix.check_name }}

14621530

needs: [preflight]

14631531

if: ${{ !cancelled() && always() && needs.preflight.outputs.run_check_additional == 'true' }}

1464-

runs-on: ${{ github.repository == 'openclaw/openclaw' && 'blacksmith-8vcpu-ubuntu-2404' || 'ubuntu-24.04' }}

1532+

runs-on: ${{ github.repository == 'openclaw/openclaw' && needs.preflight.outputs.runner_8vcpu_ubuntu || 'ubuntu-24.04' }}

14651533

timeout-minutes: 20

14661534

strategy:

14671535

fail-fast: false

@@ -1780,7 +1848,7 @@ jobs:

17801848

name: ${{ matrix.check_name }}

17811849

needs: [preflight]

17821850

if: needs.preflight.outputs.run_checks_windows == 'true'

1783-

runs-on: ${{ github.repository == 'openclaw/openclaw' && 'blacksmith-16vcpu-windows-2025' || 'windows-2025' }}

1851+

runs-on: ${{ github.repository == 'openclaw/openclaw' && needs.preflight.outputs.runner_16vcpu_windows || 'windows-2025' }}

17841852

timeout-minutes: 60

17851853

env:

17861854

NODE_OPTIONS: --max-old-space-size=6144

@@ -1893,7 +1961,7 @@ jobs:

18931961

name: ${{ matrix.check_name }}

18941962

needs: [preflight]

18951963

if: ${{ !cancelled() && always() && needs.preflight.outputs.run_macos_node == 'true' }}

1896-

runs-on: ${{ github.repository == 'openclaw/openclaw' && 'blacksmith-6vcpu-macos-latest' || 'macos-latest' }}

1964+

runs-on: ${{ github.repository == 'openclaw/openclaw' && needs.preflight.outputs.runner_6vcpu_macos || 'macos-latest' }}

18971965

timeout-minutes: 20

18981966

strategy:

18991967

fail-fast: false

@@ -1937,7 +2005,7 @@ jobs:

19372005

name: "macos-swift"

19382006

needs: [preflight]

19392007

if: needs.preflight.outputs.run_macos_swift == 'true'

1940-

runs-on: ${{ github.repository == 'openclaw/openclaw' && 'blacksmith-12vcpu-macos-latest' || 'macos-latest' }}

2008+

runs-on: ${{ github.repository == 'openclaw/openclaw' && needs.preflight.outputs.runner_12vcpu_macos || 'macos-latest' }}

19412009

timeout-minutes: 20

19422010

steps:

19432011

- name: Checkout

@@ -2034,7 +2102,7 @@ jobs:

20342102

name: ${{ matrix.check_name }}

20352103

needs: [preflight]

20362104

if: needs.preflight.outputs.run_android_job == 'true'

2037-

runs-on: ${{ github.repository == 'openclaw/openclaw' && 'blacksmith-8vcpu-ubuntu-2404' || 'ubuntu-24.04' }}

2105+

runs-on: ${{ github.repository == 'openclaw/openclaw' && needs.preflight.outputs.runner_8vcpu_ubuntu || 'ubuntu-24.04' }}

20382106

timeout-minutes: 20

20392107

strategy:

20402108

fail-fast: false