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

推荐订阅源

人人都是产品经理
人人都是产品经理
博客园_首页
博客园 - 三生石上(FineUI控件)
V
Visual Studio Blog
Hugging Face - Blog
Hugging Face - Blog
美团技术团队
小众软件
小众软件
T
Tailwind CSS Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
月光博客
月光博客
有赞技术团队
有赞技术团队
WordPress大学
WordPress大学
博客园 - 【当耐特】
Apple Machine Learning Research
Apple Machine Learning Research
罗磊的独立博客
V
V2EX
酷 壳 – CoolShell
酷 壳 – CoolShell
IT之家
IT之家
量子位
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Recent Announcements
Recent Announcements
M
MIT News - Artificial intelligence
阮一峰的网络日志
阮一峰的网络日志
The GitHub Blog
The GitHub 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
test(e2e): expand published upgrade survivor baselines · ...
vincentkoc · 2026-05-01 · via Recent Commits to openclaw:main

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

6969

required: false

7070

default: openclaw@latest

7171

type: string

72+

published_upgrade_survivor_baselines:

73+

description: Optional baseline list for published-upgrade-survivor; use release-history for last 6 plus key legacy releases

74+

required: false

75+

default: ""

76+

type: string

7277

telegram_mode:

7378

description: Optional Telegram QA lane for the resolved package candidate

7479

required: true

@@ -139,6 +144,11 @@ on:

139144

required: false

140145

default: openclaw@latest

141146

type: string

147+

published_upgrade_survivor_baselines:

148+

description: Optional baseline list for published-upgrade-survivor; use release-history for last 6 plus key legacy releases

149+

required: false

150+

default: ""

151+

type: string

142152

telegram_mode:

143153

description: Optional Telegram QA lane for the resolved package candidate

144154

required: false

@@ -275,6 +285,7 @@ jobs:

275285

package_source_sha: ${{ steps.resolve.outputs.package_source_sha }}

276286

package_sha256: ${{ steps.resolve.outputs.sha256 }}

277287

package_version: ${{ steps.resolve.outputs.package_version }}

288+

published_upgrade_survivor_baselines: ${{ steps.upgrade_survivor_baselines.outputs.baselines }}

278289

telegram_enabled: ${{ steps.profile.outputs.telegram_enabled }}

279290

telegram_mode: ${{ steps.profile.outputs.telegram_mode }}

280291

steps:

@@ -405,6 +416,40 @@ jobs:

405416

echo "package_artifact_name=${PACKAGE_ARTIFACT_NAME}"

406417

} >> "$GITHUB_OUTPUT"

407418419+

- name: Resolve published upgrade survivor baselines

420+

id: upgrade_survivor_baselines

421+

env:

422+

FALLBACK_BASELINE: ${{ inputs.published_upgrade_survivor_baseline }}

423+

REQUESTED_BASELINES: ${{ inputs.published_upgrade_survivor_baselines }}

424+

GH_TOKEN: ${{ github.token }}

425+

shell: bash

426+

run: |

427+

set -euo pipefail

428+

if [[ -z "${REQUESTED_BASELINES// }" ]]; then

429+

echo "baselines=" >> "$GITHUB_OUTPUT"

430+

exit 0

431+

fi

432+

releases_json=""

433+

if [[ "$REQUESTED_BASELINES" == *"release-history"* ]]; then

434+

releases_json=".artifacts/package-candidate-input/openclaw-releases.json"

435+

mkdir -p "$(dirname "$releases_json")"

436+

gh release list --repo "$GITHUB_REPOSITORY" --limit 100 --json tagName,publishedAt,isPrerelease > "$releases_json"

437+

fi

438+

args=(

439+

--requested "$REQUESTED_BASELINES"

440+

--fallback "$FALLBACK_BASELINE"

441+

--github-output "$GITHUB_OUTPUT"

442+

)

443+

if [[ -n "$releases_json" ]]; then

444+

args+=(

445+

--releases-json "$releases_json"

446+

--history-count 6

447+

--include-version 2026.4.23

448+

--pre-date 2026-03-15T00:00:00Z

449+

)

450+

fi

451+

node scripts/resolve-upgrade-survivor-baselines.mjs "${args[@]}" >/dev/null

452+408453

- name: Upload package-under-test artifact

409454

uses: actions/upload-artifact@v7

410455

with:

@@ -424,6 +469,7 @@ jobs:

424469

SUITE_PROFILE: ${{ inputs.suite_profile }}

425470

WORKFLOW_REF: ${{ inputs.workflow_ref }}

426471

PUBLISHED_UPGRADE_SURVIVOR_BASELINE: ${{ inputs.published_upgrade_survivor_baseline }}

472+

PUBLISHED_UPGRADE_SURVIVOR_BASELINES: ${{ steps.upgrade_survivor_baselines.outputs.baselines }}

427473

shell: bash

428474

run: |

429475

{

@@ -438,6 +484,7 @@ jobs:

438484

echo "- SHA-256: \`${PACKAGE_SHA256}\`"

439485

echo "- Profile: \`${SUITE_PROFILE}\`"

440486

echo "- Published upgrade survivor baseline: \`${PUBLISHED_UPGRADE_SURVIVOR_BASELINE}\`"

487+

echo "- Published upgrade survivor baselines: \`${PUBLISHED_UPGRADE_SURVIVOR_BASELINES}\`"

441488

} >> "$GITHUB_STEP_SUMMARY"

442489443490

docker_acceptance:

@@ -451,6 +498,7 @@ jobs:

451498

include_openwebui: ${{ needs.resolve_package.outputs.include_openwebui == 'true' }}

452499

docker_lanes: ${{ needs.resolve_package.outputs.docker_lanes }}

453500

published_upgrade_survivor_baseline: ${{ inputs.published_upgrade_survivor_baseline }}

501+

published_upgrade_survivor_baselines: ${{ needs.resolve_package.outputs.published_upgrade_survivor_baselines }}

454502

package_artifact_name: ${{ needs.resolve_package.outputs.package_artifact_name }}

455503

include_live_suites: ${{ needs.resolve_package.outputs.include_live_suites == 'true' }}

456504

live_models_only: false