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

推荐订阅源

S
SegmentFault 最新的问题
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
B
Blog RSS Feed
Y
Y Combinator Blog
T
Tailwind CSS Blog
博客园 - 三生石上(FineUI控件)
J
Java Code Geeks
Stack Overflow Blog
Stack Overflow Blog
aimingoo的专栏
aimingoo的专栏
Jina AI
Jina AI
The GitHub Blog
The GitHub Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
A
About on SuperTechFans
H
Hackread – Cybersecurity News, Data Breaches, AI and More
D
Docker
酷 壳 – CoolShell
酷 壳 – CoolShell
C
Check Point Blog
M
MIT News - Artificial intelligence
Last Week in AI
Last Week in AI
V
V2EX
腾讯CDC
F
Fortinet All Blogs
博客园 - 叶小钗
T
The Blog of Author Tim Ferriss

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 install smoke off pull requests · openclaw/openc...
steipete · 2026-04-24 · via Recent Commits to openclaw:main

@@ -1,10 +1,6 @@

11

name: Install Smoke

2233

on:

4-

push:

5-

branches: [main]

6-

pull_request:

7-

types: [opened, reopened, synchronize, ready_for_review, converted_to_draft]

84

schedule:

95

- cron: "17 3 * * *"

106

workflow_dispatch:

@@ -30,15 +26,14 @@ permissions:

3026

contents: read

31273228

concurrency:

33-

group: ${{ github.event_name == 'workflow_dispatch' && format('{0}-manual-{1}', github.workflow, github.run_id) || github.event_name == 'pull_request' && format('{0}-{1}', github.workflow, github.event.pull_request.number) || format('{0}-{1}', github.workflow, github.ref) }}

29+

group: ${{ github.event_name == 'workflow_dispatch' && format('{0}-manual-{1}', github.workflow, github.run_id) || format('{0}-{1}', github.workflow, github.ref) }}

3430

cancel-in-progress: true

35313632

env:

3733

FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: "true"

38343935

jobs:

4036

preflight:

41-

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

4237

runs-on: ubuntu-24.04

4338

outputs:

4439

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

@@ -56,67 +51,19 @@ jobs:

5651

persist-credentials: false

5752

submodules: false

585359-

- name: Ensure preflight base commit

60-

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

61-

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

62-

with:

63-

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

64-

fetch-ref: ${{ github.event_name == 'push' && github.ref_name || github.event.pull_request.base.ref }}

65-66-

- name: Detect docs-only changes

67-

id: docs_scope

68-

uses: ./.github/actions/detect-docs-changes

69-70-

- name: Detect changed smoke scope

71-

id: changed_scope

72-

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

73-

shell: bash

74-

run: |

75-

set -euo pipefail

76-77-

if [ "${{ github.event_name }}" = "push" ]; then

78-

BASE="${{ github.event.before }}"

79-

else

80-

BASE="${{ github.event.pull_request.base.sha }}"

81-

fi

82-83-

node scripts/ci-changed-scope.mjs --base "$BASE" --head HEAD

84-8554

- name: Build install-smoke CI manifest

8655

id: manifest

8756

env:

88-

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

8957

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') && 'true' || 'false' }}

9158

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

92-

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

93-

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

9459

run: |

95-

docs_only="${OPENCLAW_CI_DOCS_ONLY:-false}"

9660

event_name="${OPENCLAW_CI_EVENT_NAME:-}"

97-

force_full_install_smoke="${OPENCLAW_CI_FORCE_FULL_INSTALL_SMOKE:-false}"

9861

workflow_bun_global_install_smoke="${OPENCLAW_CI_WORKFLOW_BUN_GLOBAL_INSTALL_SMOKE:-false}"

99-

run_changed_fast_install_smoke="${OPENCLAW_CI_RUN_FAST_INSTALL_SMOKE:-false}"

100-

run_changed_full_install_smoke="${OPENCLAW_CI_RUN_FULL_INSTALL_SMOKE:-false}"

101-

run_fast_install_smoke=false

102-

run_full_install_smoke=false

62+

docs_only=false

63+

run_fast_install_smoke=true

64+

run_full_install_smoke=true

10365

run_bun_global_install_smoke=false

104-

run_install_smoke=false

105-

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

106-

run_fast_install_smoke=true

107-

run_full_install_smoke=true

108-

run_install_smoke=true

109-

elif [ "$docs_only" != "true" ] && [ "$event_name" != "push" ] && [ "$run_changed_full_install_smoke" = "true" ]; then

110-

run_fast_install_smoke=true

111-

run_full_install_smoke=true

112-

run_install_smoke=true

113-

elif [ "$docs_only" != "true" ] && [ "$run_changed_full_install_smoke" = "true" ]; then

114-

run_fast_install_smoke=true

115-

run_install_smoke=true

116-

elif [ "$docs_only" != "true" ] && [ "$run_changed_fast_install_smoke" = "true" ]; then

117-

run_fast_install_smoke=true

118-

run_install_smoke=true

119-

fi

66+

run_install_smoke=true

12067

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

12168

run_bun_global_install_smoke=true

12269

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

@@ -326,7 +273,6 @@ jobs:

326273

provenance: false

327274328275

- name: Build installer non-root image

329-

if: github.event_name != 'pull_request'

330276

uses: useblacksmith/build-push-action@cbd1f60d194a98cb3be5523b15134501eaf0fbf3 # v2

331277

with:

332278

context: ./scripts/docker

@@ -356,8 +302,8 @@ jobs:

356302

OPENCLAW_NO_ONBOARD: "1"

357303

OPENCLAW_INSTALL_SMOKE_SKIP_CLI: "1"

358304

OPENCLAW_INSTALL_SMOKE_SKIP_IMAGE_BUILD: "1"

359-

OPENCLAW_INSTALL_NONROOT_SKIP_IMAGE_BUILD: ${{ github.event_name == 'pull_request' && '0' || '1' }}

360-

OPENCLAW_INSTALL_SMOKE_SKIP_NONROOT: ${{ github.event_name == 'pull_request' && '1' || '0' }}

305+

OPENCLAW_INSTALL_NONROOT_SKIP_IMAGE_BUILD: "1"

306+

OPENCLAW_INSTALL_SMOKE_SKIP_NONROOT: "0"

361307

OPENCLAW_INSTALL_SMOKE_SKIP_NPM_GLOBAL: "1"

362308

OPENCLAW_INSTALL_SMOKE_SKIP_PREVIOUS: "1"

363309

OPENCLAW_INSTALL_SMOKE_UPDATE_BASELINE: latest