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

推荐订阅源

博客园 - 叶小钗
爱范儿
爱范儿
WordPress大学
WordPress大学
Last Week in AI
Last Week in AI
博客园 - 聂微东
雷峰网
雷峰网
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 三生石上(FineUI控件)
T
Tailwind CSS Blog
博客园 - Franky
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园_首页
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 司徒正美
月光博客
月光博客
大猫的无限游戏
大猫的无限游戏
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
The Cloudflare Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
人人都是产品经理
人人都是产品经理
宝玉的分享
宝玉的分享
罗磊的独立博客
Jina AI
Jina AI

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: keep preflight off congested blacksmith · openclaw/op...
steipete · 2026-04-25 · via Recent Commits to openclaw:main

@@ -23,7 +23,7 @@ jobs:

2323

permissions:

2424

contents: read

2525

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

26-

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

26+

runs-on: ubuntu-24.04

2727

timeout-minutes: 20

2828

outputs:

2929

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

@@ -215,26 +215,7 @@ jobs:

215215

requires_dist: shard.requiresDist,

216216

}))

217217

: [];

218-

const blacksmith4vcpuCoreShardNames = new Set([

219-

"agentic-agents",

220-

"agentic-plugin-sdk",

221-

"agentic-plugins",

222-

"core-runtime-infra",

223-

"core-runtime-media-ui",

224-

]);

225-

const resolveCoreShardRunner = (shardName) => {

226-

if (!isCanonicalRepository) return "ubuntu-24.04";

227-

if (blacksmith4vcpuCoreShardNames.has(shardName)) {

228-

return "blacksmith-4vcpu-ubuntu-2404";

229-

}

230-

return "ubuntu-24.04";

231-

};

232-

const nodeTestNonDistShards = nodeTestShards

233-

.filter((shard) => !shard.requires_dist)

234-

.map((shard) => ({

235-

...shard,

236-

runner: resolveCoreShardRunner(shard.shard_name),

237-

}));

218+

const nodeTestNonDistShards = nodeTestShards.filter((shard) => !shard.requires_dist);

238219

const nodeTestDistShards = nodeTestShards.filter((shard) => shard.requires_dist);

239220240221

const manifest = {

@@ -1137,7 +1118,10 @@ jobs:

11371118

name: ${{ matrix.check_name }}

11381119

needs: [preflight]

11391120

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

1140-

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

1121+

# Keep core shards on GitHub-hosted runners. The Blacksmith pool is already

1122+

# occupied by build and extension shards; queueing these shards there hides

1123+

# actual test-speed improvements behind runner wait time.

1124+

runs-on: ubuntu-24.04

11411125

timeout-minutes: 60

11421126

strategy:

11431127

fail-fast: false

@@ -1522,27 +1506,22 @@ jobs:

15221506

name: ${{ matrix.check_name }}

15231507

needs: [preflight]

15241508

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

1525-

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

1509+

runs-on: ubuntu-24.04

15261510

timeout-minutes: 20

15271511

strategy:

15281512

fail-fast: false

15291513

matrix:

15301514

include:

15311515

- check_name: check-additional-boundaries

15321516

group: boundaries

1533-

runner: ubuntu-24.04

15341517

- check_name: check-additional-extension-channels

15351518

group: extension-channels

1536-

runner: ubuntu-24.04

15371519

- check_name: check-additional-extension-bundled

15381520

group: extension-bundled

1539-

runner: blacksmith-4vcpu-ubuntu-2404

15401521

- check_name: check-additional-extension-package-boundary

15411522

group: extension-package-boundary

1542-

runner: blacksmith-4vcpu-ubuntu-2404

15431523

- check_name: check-additional-runtime-topology-architecture

15441524

group: runtime-topology-architecture

1545-

runner: ubuntu-24.04

15461525

steps:

15471526

- name: Checkout

15481527

shell: bash