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

推荐订阅源

J
Java Code Geeks
Martin Fowler
Martin Fowler
B
Blog RSS Feed
D
DataBreaches.Net
L
LangChain Blog
月光博客
月光博客
S
SegmentFault 最新的问题
阮一峰的网络日志
阮一峰的网络日志
V
Visual Studio Blog
美团技术团队
Jina AI
Jina AI
博客园 - 司徒正美
雷峰网
雷峰网
Last Week in AI
Last Week in AI
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
IT之家
IT之家
博客园 - 三生石上(FineUI控件)
WordPress大学
WordPress大学
小众软件
小众软件
罗磊的独立博客
博客园_首页
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
A
About on SuperTechFans
Engineering at Meta
Engineering at Meta

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(release): filter QA live lanes · openclaw/openclaw@4c6...
vincentkoc · 2026-05-04 · via Recent Commits to openclaw:main

@@ -54,7 +54,7 @@ on:

5454

- qa-parity

5555

- qa-live

5656

live_suite_filter:

57-

description: Optional exact live suite id for focused live/E2E reruns; blank runs all selected live suites

57+

description: Optional exact live/E2E suite id, or comma-separated QA live lanes such as qa-live-matrix,qa-live-telegram; blank runs all selected live suites

5858

required: false

5959

default: ""

6060

type: string

@@ -88,6 +88,9 @@ jobs:

8888

release_profile: ${{ steps.inputs.outputs.release_profile }}

8989

rerun_group: ${{ steps.inputs.outputs.rerun_group }}

9090

live_suite_filter: ${{ steps.inputs.outputs.live_suite_filter }}

91+

qa_live_matrix_enabled: ${{ steps.inputs.outputs.qa_live_matrix_enabled }}

92+

qa_live_telegram_enabled: ${{ steps.inputs.outputs.qa_live_telegram_enabled }}

93+

qa_live_slack_enabled: ${{ steps.inputs.outputs.qa_live_slack_enabled }}

9194

package_acceptance_package_spec: ${{ steps.inputs.outputs.package_acceptance_package_spec }}

9295

steps:

9396

- name: Require main or release workflow ref for release checks

@@ -208,13 +211,67 @@ jobs:

208211

RELEASE_PACKAGE_ACCEPTANCE_PACKAGE_SPEC_INPUT: ${{ inputs.package_acceptance_package_spec }}

209212

run: |

210213

set -euo pipefail

214+

qa_live_matrix_enabled=true

215+

qa_live_telegram_enabled=true

216+

qa_live_slack_enabled=true

217+218+

filter="$(printf '%s' "$RELEASE_LIVE_SUITE_FILTER_INPUT" | tr '[:upper:]' '[:lower:]')"

219+

if [[ -n "${filter// }" ]]; then

220+

qa_filter_seen=false

221+

matrix_selected=false

222+

telegram_selected=false

223+

slack_selected=false

224+225+

IFS=', ' read -r -a filter_tokens <<< "$filter"

226+

for token in "${filter_tokens[@]}"; do

227+

token="${token//$'\t'/}"

228+

token="${token//$'\r'/}"

229+

token="${token//$'\n'/}"

230+

[[ -z "$token" ]] && continue

231+

case "$token" in

232+

qa-live|qa-live-all|qa-all)

233+

qa_filter_seen=true

234+

matrix_selected=true

235+

telegram_selected=true

236+

slack_selected=true

237+

;;

238+

qa-live-non-slack|qa-non-slack|non-slack|no-slack|without-slack)

239+

qa_filter_seen=true

240+

matrix_selected=true

241+

telegram_selected=true

242+

;;

243+

qa-live-matrix|qa-matrix|matrix)

244+

qa_filter_seen=true

245+

matrix_selected=true

246+

;;

247+

qa-live-telegram|qa-telegram|telegram)

248+

qa_filter_seen=true

249+

telegram_selected=true

250+

;;

251+

qa-live-slack|qa-slack|slack)

252+

qa_filter_seen=true

253+

slack_selected=true

254+

;;

255+

esac

256+

done

257+258+

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

259+

qa_live_matrix_enabled="$matrix_selected"

260+

qa_live_telegram_enabled="$telegram_selected"

261+

qa_live_slack_enabled="$slack_selected"

262+

fi

263+

fi

264+211265

{

212266

printf 'ref=%s\n' "$RELEASE_REF_INPUT"

213267

printf 'provider=%s\n' "$RELEASE_PROVIDER_INPUT"

214268

printf 'mode=%s\n' "$RELEASE_MODE_INPUT"

215269

printf 'release_profile=%s\n' "$RELEASE_PROFILE_INPUT"

216270

printf 'rerun_group=%s\n' "$RELEASE_RERUN_GROUP_INPUT"

217271

printf 'live_suite_filter=%s\n' "$RELEASE_LIVE_SUITE_FILTER_INPUT"

272+

printf 'qa_live_matrix_enabled=%s\n' "$qa_live_matrix_enabled"

273+

printf 'qa_live_telegram_enabled=%s\n' "$qa_live_telegram_enabled"

274+

printf 'qa_live_slack_enabled=%s\n' "$qa_live_slack_enabled"

218275

printf 'package_acceptance_package_spec=%s\n' "$RELEASE_PACKAGE_ACCEPTANCE_PACKAGE_SPEC_INPUT"

219276

} >> "$GITHUB_OUTPUT"

220277

@@ -243,6 +300,7 @@ jobs:

243300

if [[ -n "${RELEASE_LIVE_SUITE_FILTER// }" ]]; then

244301

echo "- Live suite filter: \`${RELEASE_LIVE_SUITE_FILTER}\`"

245302

fi

303+

echo "- QA live lanes: Matrix \`${{ steps.inputs.outputs.qa_live_matrix_enabled }}\`, Telegram \`${{ steps.inputs.outputs.qa_live_telegram_enabled }}\`, Slack \`${{ steps.inputs.outputs.qa_live_slack_enabled }}\`"

246304

if [[ -n "${PACKAGE_ACCEPTANCE_PACKAGE_SPEC// }" ]]; then

247305

echo "- Package Acceptance package spec: \`${PACKAGE_ACCEPTANCE_PACKAGE_SPEC}\`"

248306

else

@@ -655,7 +713,7 @@ jobs:

655713

qa_live_matrix_release_checks:

656714

name: Run QA Lab live Matrix lane

657715

needs: [resolve_target]

658-

if: contains(fromJSON('["all","qa","qa-live"]'), needs.resolve_target.outputs.rerun_group)

716+

if: contains(fromJSON('["all","qa","qa-live"]'), needs.resolve_target.outputs.rerun_group) && needs.resolve_target.outputs.qa_live_matrix_enabled == 'true'

659717

runs-on: blacksmith-8vcpu-ubuntu-2404

660718

timeout-minutes: 60

661719

permissions:

@@ -732,7 +790,7 @@ jobs:

732790

qa_live_telegram_release_checks:

733791

name: Run QA Lab live Telegram lane

734792

needs: [resolve_target]

735-

if: contains(fromJSON('["all","qa","qa-live"]'), needs.resolve_target.outputs.rerun_group)

793+

if: contains(fromJSON('["all","qa","qa-live"]'), needs.resolve_target.outputs.rerun_group) && needs.resolve_target.outputs.qa_live_telegram_enabled == 'true'

736794

runs-on: blacksmith-8vcpu-ubuntu-2404

737795

timeout-minutes: 60

738796

permissions:

@@ -825,7 +883,7 @@ jobs:

825883

qa_live_slack_release_checks:

826884

name: Run QA Lab live Slack lane

827885

needs: [resolve_target]

828-

if: contains(fromJSON('["all","qa","qa-live"]'), needs.resolve_target.outputs.rerun_group)

886+

if: contains(fromJSON('["all","qa","qa-live"]'), needs.resolve_target.outputs.rerun_group) && needs.resolve_target.outputs.qa_live_slack_enabled == 'true'

829887

runs-on: blacksmith-8vcpu-ubuntu-2404

830888

timeout-minutes: 60

831889

permissions: