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

推荐订阅源

酷 壳 – CoolShell
酷 壳 – CoolShell
aimingoo的专栏
aimingoo的专栏
P
Proofpoint News Feed
宝玉的分享
宝玉的分享
MyScale Blog
MyScale Blog
The GitHub Blog
The GitHub Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
月光博客
月光博客
量子位
博客园 - 司徒正美
V
V2EX
I
InfoQ
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Vercel News
Vercel News
H
Hackread – Cybersecurity News, Data Breaches, AI and More
美团技术团队
N
Netflix TechBlog - Medium
L
LangChain Blog
IT之家
IT之家
Blog — PlanetScale
Blog — PlanetScale
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Stack Overflow Blog
Stack Overflow Blog
A
About on SuperTechFans
Microsoft Azure Blog
Microsoft Azure 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: start repo live release checks earlier · openclaw/ope...
steipete · 2026-04-29 · via Recent Commits to openclaw:main

@@ -326,8 +326,9 @@ jobs:

326326

OPENCLAW_DISCORD_SMOKE_GUILD_ID: ${{ secrets.OPENCLAW_DISCORD_SMOKE_GUILD_ID }}

327327

OPENCLAW_DISCORD_SMOKE_CHANNEL_ID: ${{ secrets.OPENCLAW_DISCORD_SMOKE_CHANNEL_ID }}

328328329-

live_and_e2e_release_checks:

330-

needs: [resolve_target, prepare_release_package]

329+

live_repo_e2e_release_checks:

330+

name: Run repo/live E2E validation

331+

needs: [resolve_target]

331332

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

332333

permissions:

333334

actions: read

@@ -338,13 +339,11 @@ jobs:

338339

with:

339340

ref: ${{ needs.resolve_target.outputs.revision }}

340341

include_repo_e2e: true

341-

include_release_path_suites: true

342-

include_openwebui: ${{ needs.resolve_target.outputs.release_profile != 'minimum' }}

342+

include_release_path_suites: false

343+

include_openwebui: false

343344

include_live_suites: true

344345

release_test_profile: ${{ needs.resolve_target.outputs.release_profile }}

345-

package_artifact_name: ${{ needs.prepare_release_package.outputs.artifact_name }}

346-

package_artifact_run_id: ${{ github.run_id }}

347-

secrets:

346+

secrets: &live_e2e_release_secrets

348347

OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}

349348

OPENAI_BASE_URL: ${{ secrets.OPENAI_BASE_URL }}

350349

ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}

@@ -391,6 +390,27 @@ jobs:

391390

OPENCLAW_GEMINI_SETTINGS_JSON: ${{ secrets.OPENCLAW_GEMINI_SETTINGS_JSON }}

392391

FIREWORKS_API_KEY: ${{ secrets.FIREWORKS_API_KEY }}

393392393+

docker_e2e_release_checks:

394+

name: Run Docker release-path validation

395+

needs: [resolve_target, prepare_release_package]

396+

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

397+

permissions:

398+

actions: read

399+

contents: read

400+

packages: write

401+

pull-requests: read

402+

uses: ./.github/workflows/openclaw-live-and-e2e-checks-reusable.yml

403+

with:

404+

ref: ${{ needs.resolve_target.outputs.revision }}

405+

include_repo_e2e: false

406+

include_release_path_suites: true

407+

include_openwebui: ${{ needs.resolve_target.outputs.release_profile != 'minimum' }}

408+

include_live_suites: false

409+

release_test_profile: ${{ needs.resolve_target.outputs.release_profile }}

410+

package_artifact_name: ${{ needs.prepare_release_package.outputs.artifact_name }}

411+

package_artifact_run_id: ${{ github.run_id }}

412+

secrets: *live_e2e_release_secrets

413+394414

package_acceptance_release_checks:

395415

name: Run package acceptance

396416

needs: [resolve_target, prepare_release_package]

@@ -772,7 +792,8 @@ jobs:

772792

- prepare_release_package

773793

- install_smoke_release_checks

774794

- cross_os_release_checks

775-

- live_and_e2e_release_checks

795+

- live_repo_e2e_release_checks

796+

- docker_e2e_release_checks

776797

- package_acceptance_release_checks

777798

- qa_lab_parity_lane_release_checks

778799

- qa_lab_parity_report_release_checks

@@ -792,7 +813,8 @@ jobs:

792813

"prepare_release_package=${{ needs.prepare_release_package.result }}" \

793814

"install_smoke_release_checks=${{ needs.install_smoke_release_checks.result }}" \

794815

"cross_os_release_checks=${{ needs.cross_os_release_checks.result }}" \

795-

"live_and_e2e_release_checks=${{ needs.live_and_e2e_release_checks.result }}" \

816+

"live_repo_e2e_release_checks=${{ needs.live_repo_e2e_release_checks.result }}" \

817+

"docker_e2e_release_checks=${{ needs.docker_e2e_release_checks.result }}" \

796818

"package_acceptance_release_checks=${{ needs.package_acceptance_release_checks.result }}" \

797819

"qa_lab_parity_lane_release_checks=${{ needs.qa_lab_parity_lane_release_checks.result }}" \

798820

"qa_lab_parity_report_release_checks=${{ needs.qa_lab_parity_report_release_checks.result }}" \