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

推荐订阅源

WordPress大学
WordPress大学
A
About on SuperTechFans
小众软件
小众软件
Hugging Face - Blog
Hugging Face - Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 叶小钗
博客园 - 聂微东
博客园 - Franky
Apple Machine Learning Research
Apple Machine Learning Research
罗磊的独立博客
量子位
博客园 - 三生石上(FineUI控件)
Recent Announcements
Recent Announcements
The GitHub Blog
The GitHub Blog
B
Blog RSS Feed
T
The Blog of Author Tim Ferriss
GbyAI
GbyAI
云风的 BLOG
云风的 BLOG
Last Week in AI
Last Week in AI
宝玉的分享
宝玉的分享
B
Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Stack Overflow Blog
Stack Overflow Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC

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: add package acceptance workflow · openclaw/openclaw@7...
steipete · 2026-04-27 · via Recent Commits to openclaw:main

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

2828

required: false

2929

default: ""

3030

type: string

31+

package_artifact_name:

32+

description: Existing workflow artifact containing openclaw-current.tgz; blank packs the selected ref

33+

required: false

34+

default: ""

35+

type: string

3136

include_live_suites:

3237

description: Whether to run live-provider coverage

3338

required: false

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

6974

required: false

7075

default: ""

7176

type: string

77+

package_artifact_name:

78+

description: Existing workflow artifact containing openclaw-current.tgz; blank packs the selected ref

79+

required: false

80+

default: ""

81+

type: string

7282

include_live_suites:

7383

description: Whether to run live-provider coverage

7484

required: false

@@ -477,6 +487,7 @@ jobs:

477487

mode: chunk

478488

chunk: ${{ matrix.chunk_id }}

479489

include-openwebui: ${{ inputs.include_openwebui }}

490+

package-artifact-name: ${{ inputs.package_artifact_name || 'docker-e2e-package' }}

480491481492

- name: Run Docker E2E chunk

482493

shell: bash

@@ -603,6 +614,7 @@ jobs:

603614

mode: targeted

604615

lanes: ${{ inputs.docker_lanes }}

605616

include-openwebui: ${{ inputs.include_openwebui }}

617+

package-artifact-name: ${{ inputs.package_artifact_name || 'docker-e2e-package' }}

606618607619

- name: Run targeted Docker E2E lanes

608620

shell: bash

@@ -713,23 +725,6 @@ jobs:

713725

ref: ${{ needs.validate_selected_ref.outputs.selected_sha }}

714726

fetch-depth: 1

715727716-

- name: Resolve shared Docker E2E image tags

717-

id: image

718-

shell: bash

719-

env:

720-

SELECTED_SHA: ${{ needs.validate_selected_ref.outputs.selected_sha }}

721-

run: |

722-

set -euo pipefail

723-

repository="${GITHUB_REPOSITORY,,}"

724-

bare_image="ghcr.io/${repository}-docker-e2e-bare:${SELECTED_SHA}"

725-

functional_image="ghcr.io/${repository}-docker-e2e-functional:${SELECTED_SHA}"

726-

image="$functional_image"

727-

echo "image=$image" >> "$GITHUB_OUTPUT"

728-

echo "bare_image=$bare_image" >> "$GITHUB_OUTPUT"

729-

echo "functional_image=$functional_image" >> "$GITHUB_OUTPUT"

730-

echo "Shared Docker E2E bare image: \`$bare_image\`" >> "$GITHUB_STEP_SUMMARY"

731-

echo "Shared Docker E2E functional image: \`$functional_image\`" >> "$GITHUB_STEP_SUMMARY"

732-733728

- name: Plan Docker E2E images

734729

id: plan

735730

uses: ./.github/actions/docker-e2e-plan

@@ -741,15 +736,22 @@ jobs:

741736

hydrate-artifacts: "false"

742737743738

- name: Setup Node environment

744-

if: steps.plan.outputs.needs_package == '1'

739+

if: steps.plan.outputs.needs_package == '1' && inputs.package_artifact_name == ''

745740

uses: ./.github/actions/setup-node-env

746741

with:

747742

node-version: ${{ env.NODE_VERSION }}

748743

pnpm-version: ${{ env.PNPM_VERSION }}

749744

install-bun: "true"

750745746+

- name: Download provided OpenClaw Docker E2E package

747+

if: steps.plan.outputs.needs_package == '1' && inputs.package_artifact_name != ''

748+

uses: actions/download-artifact@v8

749+

with:

750+

name: ${{ inputs.package_artifact_name }}

751+

path: .artifacts/docker-e2e-package

752+751753

- name: Pack OpenClaw package for Docker E2E

752-

if: steps.plan.outputs.needs_package == '1'

754+

if: steps.plan.outputs.needs_package == '1' && inputs.package_artifact_name == ''

753755

shell: bash

754756

run: |

755757

set -euo pipefail

@@ -758,14 +760,60 @@ jobs:

758760

--output-dir .artifacts/docker-e2e-package \

759761

--output-name openclaw-current.tgz

760762761-

- name: Upload OpenClaw Docker E2E package

763+

- name: Validate OpenClaw Docker E2E package

764+

id: package

762765

if: steps.plan.outputs.needs_package == '1'

766+

shell: bash

767+

run: |

768+

set -euo pipefail

769+

mkdir -p .artifacts/docker-e2e-package

770+

target=".artifacts/docker-e2e-package/openclaw-current.tgz"

771+

if [[ ! -f "$target" ]]; then

772+

mapfile -t tgzs < <(find .artifacts/docker-e2e-package -type f -name '*.tgz' | sort)

773+

if [[ "${#tgzs[@]}" -ne 1 ]]; then

774+

echo "Expected exactly one package tarball in .artifacts/docker-e2e-package; found ${#tgzs[@]}." >&2

775+

printf '%s\n' "${tgzs[@]}" >&2

776+

exit 1

777+

fi

778+

cp "${tgzs[0]}" "$target"

779+

fi

780+

node scripts/check-openclaw-package-tarball.mjs "$target"

781+

digest="$(sha256sum "$target" | awk '{print $1}')"

782+

tag="pkg-${digest:0:32}"

783+

echo "sha256=$digest" >> "$GITHUB_OUTPUT"

784+

echo "tag=$tag" >> "$GITHUB_OUTPUT"

785+

{

786+

echo "Docker E2E package: \`$target\`"

787+

echo "Docker E2E package SHA-256: \`$digest\`"

788+

} >> "$GITHUB_STEP_SUMMARY"

789+790+

- name: Upload OpenClaw Docker E2E package

791+

if: steps.plan.outputs.needs_package == '1' && inputs.package_artifact_name == ''

763792

uses: actions/upload-artifact@v7

764793

with:

765794

name: docker-e2e-package

766795

path: .artifacts/docker-e2e-package/openclaw-current.tgz

767796

if-no-files-found: error

768797798+

- name: Resolve shared Docker E2E image tags

799+

id: image

800+

shell: bash

801+

env:

802+

PACKAGE_TAG: ${{ steps.package.outputs.tag }}

803+

SELECTED_SHA: ${{ needs.validate_selected_ref.outputs.selected_sha }}

804+

run: |

805+

set -euo pipefail

806+

repository="${GITHUB_REPOSITORY,,}"

807+

image_tag="${PACKAGE_TAG:-$SELECTED_SHA}"

808+

bare_image="ghcr.io/${repository}-docker-e2e-bare:${image_tag}"

809+

functional_image="ghcr.io/${repository}-docker-e2e-functional:${image_tag}"

810+

image="$functional_image"

811+

echo "image=$image" >> "$GITHUB_OUTPUT"

812+

echo "bare_image=$bare_image" >> "$GITHUB_OUTPUT"

813+

echo "functional_image=$functional_image" >> "$GITHUB_OUTPUT"

814+

echo "Shared Docker E2E bare image: \`$bare_image\`" >> "$GITHUB_STEP_SUMMARY"

815+

echo "Shared Docker E2E functional image: \`$functional_image\`" >> "$GITHUB_STEP_SUMMARY"

816+769817

- name: Log in to GHCR

770818

if: steps.plan.outputs.needs_e2e_image == '1'

771819

uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4