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

推荐订阅源

P
Proofpoint News Feed
云风的 BLOG
云风的 BLOG
Apple Machine Learning Research
Apple Machine Learning Research
Hugging Face - Blog
Hugging Face - Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Google DeepMind News
Google DeepMind News
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
雷峰网
雷峰网
B
Blog
月光博客
月光博客
博客园 - 【当耐特】
WordPress大学
WordPress大学
Microsoft Azure Blog
Microsoft Azure Blog
I
InfoQ
The GitHub Blog
The GitHub Blog
Engineering at Meta
Engineering at Meta
Jina AI
Jina AI
博客园 - Franky
MyScale Blog
MyScale Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Last Week in AI
Last Week in AI
B
Blog RSS Feed
H
Help Net Security

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
fix(ci): add focused windows ci probe · openclaw/openclaw...
vincentkoc · 2026-06-18 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

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

3737

required: false

3838

default: false

3939

type: boolean

40+

run_windows_ci:

41+

description: "Run the focused Windows-native CI test shard after probing"

42+

required: false

43+

default: false

44+

type: boolean

4045
4146

permissions:

4247

contents: read

@@ -168,7 +173,85 @@ jobs:

168173
169174

exit 0

170175
176+

- name: Try to exclude workspace from Windows Defender (best-effort)

177+

if: ${{ inputs.run_windows_ci }}

178+

shell: pwsh

179+

run: |

180+

$cmd = Get-Command Add-MpPreference -ErrorAction SilentlyContinue

181+

if (-not $cmd) {

182+

Write-Host "Add-MpPreference not available, skipping Defender exclusions."

183+

exit 0

184+

}

185+
186+

try {

187+

Add-MpPreference -ExclusionPath "$env:GITHUB_WORKSPACE" -ErrorAction Stop

188+

Add-MpPreference -ExclusionProcess "node.exe" -ErrorAction Stop

189+

Write-Host "Defender exclusions applied."

190+

} catch {

191+

Write-Warning "Failed to apply Defender exclusions, continuing. $($_.Exception.Message)"

192+

}

193+
194+

- name: Setup Node.js

195+

if: ${{ inputs.run_windows_ci }}

196+

shell: bash

197+

env:

198+

REQUESTED_NODE_VERSION: "22.x"

199+

run: |

200+

set -euo pipefail

201+

source .github/actions/setup-pnpm-store-cache/ensure-node.sh

202+

openclaw_ensure_node "$REQUESTED_NODE_VERSION"

203+
204+

- name: Setup pnpm

205+

if: ${{ inputs.run_windows_ci }}

206+

uses: ./.github/actions/setup-pnpm-store-cache

207+

with:

208+

node-version: 22.x

209+
210+

- name: Runtime versions

211+

if: ${{ inputs.run_windows_ci }}

212+

shell: bash

213+

run: |

214+

node -v

215+

npm -v

216+

pnpm -v

217+
218+

- name: Capture node path

219+

if: ${{ inputs.run_windows_ci }}

220+

shell: bash

221+

run: |

222+

node_bin="$(dirname "$(node -p 'process.execPath')")"

223+

if command -v cygpath >/dev/null 2>&1; then

224+

node_bin="$(cygpath -u "$node_bin")"

225+

fi

226+

echo "NODE_BIN=$node_bin" >> "$GITHUB_ENV"

227+
228+

- name: Install dependencies

229+

if: ${{ inputs.run_windows_ci }}

230+

shell: bash

231+

env:

232+

CI: true

233+

run: |

234+

export PATH="$NODE_BIN:$PATH"

235+

which node

236+

node -v

237+

pnpm -v

238+

pnpm install --frozen-lockfile --prefer-offline --ignore-scripts=false --config.engine-strict=false --config.enable-pre-post-scripts=true --config.side-effects-cache=true || pnpm install --frozen-lockfile --prefer-offline --ignore-scripts=false --config.engine-strict=false --config.enable-pre-post-scripts=true --config.side-effects-cache=true

239+
240+

- name: Run Windows CI tests

241+

if: ${{ inputs.run_windows_ci }}

242+

shell: bash

243+

env:

244+

CI: true

245+

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

246+

OPENCLAW_TEST_SKIP_FULL_EXTENSIONS_SHARD: 1

247+

OPENCLAW_VITEST_MAX_WORKERS: 1

248+

run: |

249+

set -euo pipefail

250+

export PATH="$NODE_BIN:$PATH"

251+

pnpm test:windows:ci

252+
171253

- name: Keep runner alive for SSH inspection

254+

if: ${{ always() && !cancelled() }}

172255

env:

173256

KEEPALIVE_MINUTES: ${{ inputs.keepalive_minutes }}

174257

run: |

@@ -185,7 +268,7 @@ jobs:

185268

}

186269
187270

- name: Enforce WSL2 requirement

188-

if: ${{ inputs.require_wsl2 }}

271+

if: ${{ always() && !cancelled() && inputs.require_wsl2 }}

189272

run: |

190273

if ($env:OPENCLAW_WSL2_PROBE_OK -ne "true") {

191274

Write-Error "WSL2 probe failed or WSL2 is unavailable on this Windows runner."