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

推荐订阅源

Google DeepMind News
Google DeepMind News
aimingoo的专栏
aimingoo的专栏
爱范儿
爱范儿
D
Docker
I
InfoQ
Microsoft Security Blog
Microsoft Security Blog
G
Google Developers Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Vercel News
Vercel News
H
Hackread – Cybersecurity News, Data Breaches, AI and More
T
Tailwind CSS Blog
D
DataBreaches.Net
月光博客
月光博客
N
Netflix TechBlog - Medium
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
V
Visual Studio Blog
MyScale Blog
MyScale Blog
B
Blog
阮一峰的网络日志
阮一峰的网络日志
L
LangChain Blog
Recent Announcements
Recent Announcements
Microsoft Azure Blog
Microsoft Azure Blog
WordPress大学
WordPress大学

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: split docker e2e images · openclaw/openclaw@baaad52
steipete · 2026-04-27 · via Recent Commits to openclaw:main

@@ -436,6 +436,8 @@ jobs:

436436

OPENCLAW_GEMINI_SETTINGS_JSON: ${{ secrets.OPENCLAW_GEMINI_SETTINGS_JSON }}

437437

FIREWORKS_API_KEY: ${{ secrets.FIREWORKS_API_KEY }}

438438

OPENCLAW_DOCKER_E2E_IMAGE: ${{ needs.prepare_docker_e2e_image.outputs.image }}

439+

OPENCLAW_DOCKER_E2E_BARE_IMAGE: ${{ needs.prepare_docker_e2e_image.outputs.bare_image }}

440+

OPENCLAW_DOCKER_E2E_FUNCTIONAL_IMAGE: ${{ needs.prepare_docker_e2e_image.outputs.functional_image }}

439441

OPENCLAW_SKIP_DOCKER_BUILD: "1"

440442

INCLUDE_OPENWEBUI: ${{ inputs.include_openwebui }}

441443

DOCKER_E2E_CHUNK: ${{ matrix.chunk_id }}

@@ -467,7 +469,21 @@ jobs:

467469

shell: bash

468470

run: |

469471

set -euo pipefail

470-

docker pull "${OPENCLAW_DOCKER_E2E_IMAGE}"

472+

case "${DOCKER_E2E_CHUNK}" in

473+

core)

474+

docker pull "${OPENCLAW_DOCKER_E2E_FUNCTIONAL_IMAGE}"

475+

;;

476+

package-update)

477+

docker pull "${OPENCLAW_DOCKER_E2E_BARE_IMAGE}"

478+

;;

479+

plugins-integrations)

480+

docker pull "${OPENCLAW_DOCKER_E2E_BARE_IMAGE}"

481+

docker pull "${OPENCLAW_DOCKER_E2E_FUNCTIONAL_IMAGE}"

482+

;;

483+

*)

484+

docker pull "${OPENCLAW_DOCKER_E2E_IMAGE}"

485+

;;

486+

esac

471487472488

- name: Validate chunk credentials

473489

shell: bash

@@ -534,6 +550,15 @@ jobs:

534550

const rerun = String(lane.rerunCommand ?? "").replaceAll("`", "\\`");

535551

console.log(`| \`${lane.name}\` | ${status} | ${lane.elapsedSeconds ?? ""} | ${lane.timedOut ? "yes" : "no"} | \`${rerun}\` |`);

536552

}

553+

const phases = Array.isArray(summary.phases) ? summary.phases : [];

554+

if (phases.length > 0) {

555+

console.log("");

556+

console.log("| Phase | Seconds | Status | Image kind |");

557+

console.log("| --- | ---: | --- | --- |");

558+

for (const phase of phases) {

559+

console.log(`| \`${phase.name}\` | ${phase.elapsedSeconds ?? ""} | ${phase.status ?? ""} | ${phase.imageKind ?? ""} |`);

560+

}

561+

}

537562

NODE

538563539564

- name: Upload Docker E2E chunk artifacts

@@ -596,6 +621,8 @@ jobs:

596621

OPENCLAW_GEMINI_SETTINGS_JSON: ${{ secrets.OPENCLAW_GEMINI_SETTINGS_JSON }}

597622

FIREWORKS_API_KEY: ${{ secrets.FIREWORKS_API_KEY }}

598623

OPENCLAW_DOCKER_E2E_IMAGE: ${{ needs.prepare_docker_e2e_image.outputs.image }}

624+

OPENCLAW_DOCKER_E2E_BARE_IMAGE: ${{ needs.prepare_docker_e2e_image.outputs.bare_image }}

625+

OPENCLAW_DOCKER_E2E_FUNCTIONAL_IMAGE: ${{ needs.prepare_docker_e2e_image.outputs.functional_image }}

599626

OPENCLAW_SKIP_DOCKER_BUILD: "1"

600627

INCLUDE_OPENWEBUI: ${{ inputs.include_openwebui }}

601628

DOCKER_E2E_LANES: ${{ inputs.docker_lanes }}

@@ -623,11 +650,12 @@ jobs:

623650

- name: Hydrate live auth/profile inputs

624651

run: bash scripts/ci-hydrate-live-auth.sh

625652626-

- name: Pull shared Docker E2E image

653+

- name: Pull shared Docker E2E images

627654

shell: bash

628655

run: |

629656

set -euo pipefail

630-

docker pull "${OPENCLAW_DOCKER_E2E_IMAGE}"

657+

docker pull "${OPENCLAW_DOCKER_E2E_BARE_IMAGE}"

658+

docker pull "${OPENCLAW_DOCKER_E2E_FUNCTIONAL_IMAGE}"

631659632660

- name: Validate targeted lane credentials

633661

shell: bash

@@ -695,6 +723,15 @@ jobs:

695723

const rerun = String(lane.rerunCommand ?? "").replaceAll("`", "\\`");

696724

console.log(`| \`${lane.name}\` | ${status} | ${lane.elapsedSeconds ?? ""} | ${lane.timedOut ? "yes" : "no"} | \`${rerun}\` |`);

697725

}

726+

const phases = Array.isArray(summary.phases) ? summary.phases : [];

727+

if (phases.length > 0) {

728+

console.log("");

729+

console.log("| Phase | Seconds | Status | Image kind |");

730+

console.log("| --- | ---: | --- | --- |");

731+

for (const phase of phases) {

732+

console.log(`| \`${phase.name}\` | ${phase.elapsedSeconds ?? ""} | ${phase.status ?? ""} | ${phase.imageKind ?? ""} |`);

733+

}

734+

}

698735

NODE

699736700737

- name: Upload targeted Docker E2E artifacts

@@ -714,6 +751,7 @@ jobs:

714751

OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}

715752

OPENAI_BASE_URL: ${{ secrets.OPENAI_BASE_URL }}

716753

OPENCLAW_DOCKER_E2E_IMAGE: ${{ needs.prepare_docker_e2e_image.outputs.image }}

754+

OPENCLAW_DOCKER_E2E_FUNCTIONAL_IMAGE: ${{ needs.prepare_docker_e2e_image.outputs.functional_image }}

717755

OPENCLAW_SKIP_DOCKER_BUILD: "1"

718756

steps:

719757

- name: Checkout selected ref

@@ -758,6 +796,8 @@ jobs:

758796

packages: write

759797

outputs:

760798

image: ${{ steps.image.outputs.image }}

799+

bare_image: ${{ steps.image.outputs.bare_image }}

800+

functional_image: ${{ steps.image.outputs.functional_image }}

761801

env:

762802

DOCKER_BUILD_SUMMARY: "false"

763803

DOCKER_BUILD_RECORD_UPLOAD: "false"

@@ -768,17 +808,22 @@ jobs:

768808

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

769809

fetch-depth: 1

770810771-

- name: Resolve shared Docker E2E image tag

811+

- name: Resolve shared Docker E2E image tags

772812

id: image

773813

shell: bash

774814

env:

775815

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

776816

run: |

777817

set -euo pipefail

778818

repository="${GITHUB_REPOSITORY,,}"

779-

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

819+

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

820+

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

821+

image="$functional_image"

780822

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

781-

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

823+

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

824+

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

825+

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

826+

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

782827783828

- name: Log in to GHCR

784829

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

@@ -790,16 +835,33 @@ jobs:

790835

- name: Setup Docker builder

791836

uses: useblacksmith/setup-docker-builder@ac083cc84672d01c60d5e8561d0a939b697de542 # v1

792837793-

- name: Build and push shared Docker E2E image

838+

- name: Build and push bare Docker E2E image

839+

if: inputs.include_release_path_suites || inputs.docker_lanes != ''

794840

uses: docker/build-push-action@bcafcacb16a39f128d818304e6c9c0c18556b85f # v7.1.0

795841

with:

796842

context: .

797843

file: ./scripts/e2e/Dockerfile

798844

target: build

799845

platforms: linux/amd64

800-

cache-from: type=gha,scope=docker-e2e

801-

cache-to: type=gha,mode=max,scope=docker-e2e

802-

tags: ${{ steps.image.outputs.image }}

846+

cache-from: type=gha,scope=docker-e2e-bare

847+

cache-to: type=gha,mode=max,scope=docker-e2e-bare

848+

tags: ${{ steps.image.outputs.bare_image }}

849+

sbom: true

850+

provenance: mode=max

851+

push: true

852+853+

- name: Build and push functional Docker E2E image

854+

uses: docker/build-push-action@bcafcacb16a39f128d818304e6c9c0c18556b85f # v7.1.0

855+

with:

856+

context: .

857+

file: ./scripts/e2e/Dockerfile

858+

target: functional

859+

platforms: linux/amd64

860+

cache-from: |

861+

type=gha,scope=docker-e2e-bare

862+

type=gha,scope=docker-e2e-functional

863+

cache-to: type=gha,mode=max,scope=docker-e2e-functional

864+

tags: ${{ steps.image.outputs.functional_image }}

803865

sbom: true

804866

provenance: mode=max

805867

push: true