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

推荐订阅源

大猫的无限游戏
大猫的无限游戏
aimingoo的专栏
aimingoo的专栏
I
InfoQ
B
Blog RSS Feed
D
DataBreaches.Net
S
SegmentFault 最新的问题
P
Proofpoint News Feed
A
About on SuperTechFans
WordPress大学
WordPress大学
Hugging Face - Blog
Hugging Face - Blog
博客园 - 司徒正美
小众软件
小众软件
博客园 - Franky
有赞技术团队
有赞技术团队
D
Docker
T
Tailwind CSS Blog
雷峰网
雷峰网
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Blog — PlanetScale
Blog — PlanetScale
酷 壳 – CoolShell
酷 壳 – CoolShell
B
Blog
V
Visual Studio 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: limit bun install smoke to release gates · openclaw/o...
steipete · 2026-04-24 · via Recent Commits to openclaw:main

@@ -8,6 +8,23 @@ on:

88

schedule:

99

- cron: "17 3 * * *"

1010

workflow_dispatch:

11+

inputs:

12+

run_bun_global_install_smoke:

13+

description: Run the Bun global install image-provider smoke

14+

required: false

15+

default: false

16+

type: boolean

17+

workflow_call:

18+

inputs:

19+

ref:

20+

description: Git ref to validate

21+

required: false

22+

type: string

23+

run_bun_global_install_smoke:

24+

description: Run the Bun global install image-provider smoke

25+

required: false

26+

default: true

27+

type: boolean

11281229

permissions:

1330

contents: read

@@ -28,17 +45,19 @@ jobs:

2845

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

2946

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

3047

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

48+

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

3149

steps:

3250

- name: Checkout

3351

uses: actions/checkout@v6

3452

with:

53+

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

3554

fetch-depth: 1

3655

fetch-tags: false

3756

persist-credentials: false

3857

submodules: false

39584059

- name: Ensure preflight base commit

41-

if: github.event_name != 'workflow_dispatch' && github.event_name != 'schedule'

60+

if: github.event_name != 'workflow_dispatch' && github.event_name != 'schedule' && github.event_name != 'workflow_call'

4261

uses: ./.github/actions/ensure-base-commit

4362

with:

4463

base-sha: ${{ github.event_name == 'push' && github.event.before || github.event.pull_request.base.sha }}

@@ -50,7 +69,7 @@ jobs:

50695170

- name: Detect changed smoke scope

5271

id: changed_scope

53-

if: github.event_name != 'workflow_dispatch' && github.event_name != 'schedule' && steps.docs_scope.outputs.docs_only != 'true'

72+

if: github.event_name != 'workflow_dispatch' && github.event_name != 'schedule' && github.event_name != 'workflow_call' && steps.docs_scope.outputs.docs_only != 'true'

5473

shell: bash

5574

run: |

5675

set -euo pipefail

@@ -67,16 +86,21 @@ jobs:

6786

id: manifest

6887

env:

6988

OPENCLAW_CI_DOCS_ONLY: ${{ steps.docs_scope.outputs.docs_only }}

70-

OPENCLAW_CI_FORCE_FULL_INSTALL_SMOKE: ${{ (github.event_name == 'workflow_dispatch' || github.event_name == 'schedule' || github.event_name == 'push') && 'true' || 'false' }}

89+

OPENCLAW_CI_EVENT_NAME: ${{ github.event_name }}

90+

OPENCLAW_CI_FORCE_FULL_INSTALL_SMOKE: ${{ (github.event_name == 'workflow_dispatch' || github.event_name == 'schedule' || github.event_name == 'workflow_call' || github.event_name == 'push') && 'true' || 'false' }}

91+

OPENCLAW_CI_WORKFLOW_BUN_GLOBAL_INSTALL_SMOKE: ${{ inputs.run_bun_global_install_smoke || 'false' }}

7192

OPENCLAW_CI_RUN_FAST_INSTALL_SMOKE: ${{ steps.changed_scope.outputs.run_fast_install_smoke || steps.changed_scope.outputs.run_changed_smoke || 'false' }}

7293

OPENCLAW_CI_RUN_FULL_INSTALL_SMOKE: ${{ steps.changed_scope.outputs.run_full_install_smoke || 'false' }}

7394

run: |

7495

docs_only="${OPENCLAW_CI_DOCS_ONLY:-false}"

96+

event_name="${OPENCLAW_CI_EVENT_NAME:-}"

7597

force_full_install_smoke="${OPENCLAW_CI_FORCE_FULL_INSTALL_SMOKE:-false}"

98+

workflow_bun_global_install_smoke="${OPENCLAW_CI_WORKFLOW_BUN_GLOBAL_INSTALL_SMOKE:-false}"

7699

run_changed_fast_install_smoke="${OPENCLAW_CI_RUN_FAST_INSTALL_SMOKE:-false}"

77100

run_changed_full_install_smoke="${OPENCLAW_CI_RUN_FULL_INSTALL_SMOKE:-false}"

78101

run_fast_install_smoke=false

79102

run_full_install_smoke=false

103+

run_bun_global_install_smoke=false

80104

run_install_smoke=false

81105

if [ "$force_full_install_smoke" = "true" ]; then

82106

run_fast_install_smoke=true

@@ -90,11 +114,19 @@ jobs:

90114

run_fast_install_smoke=true

91115

run_install_smoke=true

92116

fi

117+

if [ "$event_name" = "schedule" ]; then

118+

run_bun_global_install_smoke=true

119+

elif [ "$event_name" = "workflow_dispatch" ] || [ "$event_name" = "workflow_call" ]; then

120+

if [ "$workflow_bun_global_install_smoke" = "true" ]; then

121+

run_bun_global_install_smoke=true

122+

fi

123+

fi

93124

{

94125

echo "docs_only=$docs_only"

95126

echo "run_install_smoke=$run_install_smoke"

96127

echo "run_fast_install_smoke=$run_fast_install_smoke"

97128

echo "run_full_install_smoke=$run_full_install_smoke"

129+

echo "run_bun_global_install_smoke=$run_bun_global_install_smoke"

98130

} >> "$GITHUB_OUTPUT"

99131100132

install-smoke-fast:

@@ -107,6 +139,8 @@ jobs:

107139

steps:

108140

- name: Checkout CLI

109141

uses: actions/checkout@v6

142+

with:

143+

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

110144111145

- name: Set up Blacksmith Docker Builder

112146

uses: useblacksmith/setup-docker-builder@ac083cc84672d01c60d5e8561d0a939b697de542 # v1

@@ -193,6 +227,8 @@ jobs:

193227

steps:

194228

- name: Checkout CLI

195229

uses: actions/checkout@v6

230+

with:

231+

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

196232197233

- name: Set up Blacksmith Docker Builder

198234

uses: useblacksmith/setup-docker-builder@ac083cc84672d01c60d5e8561d0a939b697de542 # v1

@@ -298,12 +334,14 @@ jobs:

298334

provenance: false

299335300336

- name: Setup Node environment for local pack smoke

337+

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

301338

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

302339

with:

303340

install-bun: "true"

304341

install-deps: "true"

305342306343

- name: Run Bun global install image-provider smoke

344+

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

307345

env:

308346

OPENCLAW_BUN_GLOBAL_SMOKE_DIST_IMAGE: openclaw-dockerfile-smoke:local

309347

OPENCLAW_BUN_GLOBAL_SMOKE_HOST_BUILD: "0"

@@ -336,6 +374,8 @@ jobs:

336374

steps:

337375

- name: Checkout CLI

338376

uses: actions/checkout@v6

377+

with:

378+

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

339379340380

- name: Set up Blacksmith Docker Builder

341381

uses: useblacksmith/setup-docker-builder@ac083cc84672d01c60d5e8561d0a939b697de542 # v1