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

推荐订阅源

U
Unit 42
Vercel News
Vercel News
博客园 - 叶小钗
大猫的无限游戏
大猫的无限游戏
MyScale Blog
MyScale Blog
P
Proofpoint News Feed
量子位
Engineering at Meta
Engineering at Meta
B
Blog RSS Feed
博客园 - 【当耐特】
Recent Announcements
Recent Announcements
Google DeepMind News
Google DeepMind News
D
DataBreaches.Net
Stack Overflow Blog
Stack Overflow Blog
博客园 - 聂微东
小众软件
小众软件
Hugging Face - Blog
Hugging Face - Blog
人人都是产品经理
人人都是产品经理
IT之家
IT之家
T
The Blog of Author Tim Ferriss
Last Week in AI
Last Week in AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Jina AI
Jina AI
博客园 - 三生石上(FineUI控件)

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 targeted docker lane reruns · openclaw/openclaw@b...
steipete · 2026-04-27 · via Recent Commits to openclaw:main

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

2323

required: false

2424

default: true

2525

type: boolean

26+

docker_lanes:

27+

description: Comma/space separated Docker scheduler lane names to run against the prepared image

28+

required: false

29+

default: ""

30+

type: string

2631

include_live_suites:

2732

description: Whether to run live-provider coverage

2833

required: false

@@ -54,6 +59,11 @@ on:

5459

required: false

5560

default: true

5661

type: boolean

62+

docker_lanes:

63+

description: Comma/space separated Docker scheduler lane names to run against the prepared image

64+

required: false

65+

default: ""

66+

type: string

5767

include_live_suites:

5868

description: Whether to run live-provider coverage

5969

required: false

@@ -363,7 +373,7 @@ jobs:

363373364374

validate_docker_e2e:

365375

needs: [validate_selected_ref, prepare_docker_e2e_image]

366-

if: inputs.include_release_path_suites

376+

if: inputs.include_release_path_suites && inputs.docker_lanes == ''

367377

name: Docker E2E (${{ matrix.label }})

368378

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

369379

timeout-minutes: ${{ matrix.timeout_minutes }}

@@ -517,11 +527,12 @@ jobs:

517527

console.log("");

518528

console.log(`Status: \`${summary.status}\``);

519529

console.log("");

520-

console.log("| Lane | Status | Seconds | Timed out |");

521-

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

530+

console.log("| Lane | Status | Seconds | Timed out | Rerun |");

531+

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

522532

for (const lane of lanes) {

523533

const status = lane.status === 0 ? "pass" : `fail ${lane.status}`;

524-

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

534+

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

535+

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

525536

}

526537

NODE

527538

@@ -533,9 +544,170 @@ jobs:

533544

path: .artifacts/docker-tests/

534545

if-no-files-found: ignore

535546547+

validate_docker_lanes:

548+

needs: [validate_selected_ref, prepare_docker_e2e_image]

549+

if: inputs.docker_lanes != ''

550+

name: Docker E2E targeted lanes

551+

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

552+

timeout-minutes: 180

553+

env:

554+

OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}

555+

OPENAI_BASE_URL: ${{ secrets.OPENAI_BASE_URL }}

556+

ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}

557+

ANTHROPIC_API_TOKEN: ${{ secrets.ANTHROPIC_API_TOKEN }}

558+

ANTHROPIC_API_KEY_OLD: ${{ secrets.ANTHROPIC_API_KEY_OLD }}

559+

BYTEPLUS_API_KEY: ${{ secrets.BYTEPLUS_API_KEY }}

560+

CEREBRAS_API_KEY: ${{ secrets.CEREBRAS_API_KEY }}

561+

DASHSCOPE_API_KEY: ${{ secrets.DASHSCOPE_API_KEY }}

562+

GROQ_API_KEY: ${{ secrets.GROQ_API_KEY }}

563+

KIMI_API_KEY: ${{ secrets.KIMI_API_KEY }}

564+

MODELSTUDIO_API_KEY: ${{ secrets.MODELSTUDIO_API_KEY }}

565+

MOONSHOT_API_KEY: ${{ secrets.MOONSHOT_API_KEY }}

566+

MISTRAL_API_KEY: ${{ secrets.MISTRAL_API_KEY }}

567+

MINIMAX_API_KEY: ${{ secrets.MINIMAX_API_KEY }}

568+

OPENCODE_API_KEY: ${{ secrets.OPENCODE_API_KEY }}

569+

OPENCODE_ZEN_API_KEY: ${{ secrets.OPENCODE_ZEN_API_KEY }}

570+

OPENCLAW_LIVE_BROWSER_CDP_URL: ${{ secrets.OPENCLAW_LIVE_BROWSER_CDP_URL }}

571+

OPENCLAW_LIVE_SETUP_TOKEN: ${{ secrets.OPENCLAW_LIVE_SETUP_TOKEN }}

572+

OPENCLAW_LIVE_SETUP_TOKEN_MODEL: ${{ secrets.OPENCLAW_LIVE_SETUP_TOKEN_MODEL }}

573+

OPENCLAW_LIVE_SETUP_TOKEN_PROFILE: ${{ secrets.OPENCLAW_LIVE_SETUP_TOKEN_PROFILE }}

574+

OPENCLAW_LIVE_SETUP_TOKEN_VALUE: ${{ secrets.OPENCLAW_LIVE_SETUP_TOKEN_VALUE }}

575+

GEMINI_API_KEY: ${{ secrets.GEMINI_API_KEY }}

576+

GOOGLE_API_KEY: ${{ secrets.GOOGLE_API_KEY }}

577+

OPENROUTER_API_KEY: ${{ secrets.OPENROUTER_API_KEY }}

578+

QWEN_API_KEY: ${{ secrets.QWEN_API_KEY }}

579+

FAL_KEY: ${{ secrets.FAL_KEY }}

580+

RUNWAY_API_KEY: ${{ secrets.RUNWAY_API_KEY }}

581+

DEEPGRAM_API_KEY: ${{ secrets.DEEPGRAM_API_KEY }}

582+

TOGETHER_API_KEY: ${{ secrets.TOGETHER_API_KEY }}

583+

VYDRA_API_KEY: ${{ secrets.VYDRA_API_KEY }}

584+

XAI_API_KEY: ${{ secrets.XAI_API_KEY }}

585+

ZAI_API_KEY: ${{ secrets.ZAI_API_KEY }}

586+

Z_AI_API_KEY: ${{ secrets.Z_AI_API_KEY }}

587+

BYTEPLUS_ACCESS_KEY_ID: ${{ secrets.BYTEPLUS_ACCESS_KEY_ID }}

588+

BYTEPLUS_SECRET_ACCESS_KEY: ${{ secrets.BYTEPLUS_SECRET_ACCESS_KEY }}

589+

CLAUDE_CODE_OAUTH_TOKEN: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }}

590+

OPENCLAW_CODEX_AUTH_JSON: ${{ secrets.OPENCLAW_CODEX_AUTH_JSON }}

591+

OPENCLAW_CODEX_CONFIG_TOML: ${{ secrets.OPENCLAW_CODEX_CONFIG_TOML }}

592+

OPENCLAW_CLAUDE_JSON: ${{ secrets.OPENCLAW_CLAUDE_JSON }}

593+

OPENCLAW_CLAUDE_CREDENTIALS_JSON: ${{ secrets.OPENCLAW_CLAUDE_CREDENTIALS_JSON }}

594+

OPENCLAW_CLAUDE_SETTINGS_JSON: ${{ secrets.OPENCLAW_CLAUDE_SETTINGS_JSON }}

595+

OPENCLAW_CLAUDE_SETTINGS_LOCAL_JSON: ${{ secrets.OPENCLAW_CLAUDE_SETTINGS_LOCAL_JSON }}

596+

OPENCLAW_GEMINI_SETTINGS_JSON: ${{ secrets.OPENCLAW_GEMINI_SETTINGS_JSON }}

597+

FIREWORKS_API_KEY: ${{ secrets.FIREWORKS_API_KEY }}

598+

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

599+

OPENCLAW_SKIP_DOCKER_BUILD: "1"

600+

INCLUDE_OPENWEBUI: ${{ inputs.include_openwebui }}

601+

DOCKER_E2E_LANES: ${{ inputs.docker_lanes }}

602+

steps:

603+

- name: Checkout selected ref

604+

uses: actions/checkout@v6

605+

with:

606+

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

607+

fetch-depth: 1

608+609+

- name: Log in to GHCR for shared Docker E2E image

610+

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

611+

with:

612+

registry: ghcr.io

613+

username: ${{ github.actor }}

614+

password: ${{ github.token }}

615+616+

- name: Setup Node environment

617+

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

618+

with:

619+

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

620+

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

621+

install-bun: "true"

622+623+

- name: Hydrate live auth/profile inputs

624+

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

625+626+

- name: Pull shared Docker E2E image

627+

shell: bash

628+

run: |

629+

set -euo pipefail

630+

docker pull "${OPENCLAW_DOCKER_E2E_IMAGE}"

631+632+

- name: Validate targeted lane credentials

633+

shell: bash

634+

run: |

635+

set -euo pipefail

636+

lanes=" ${DOCKER_E2E_LANES//,/ } "

637+

if [[ "$lanes" == *" install-e2e "* ]]; then

638+

[[ -n "${OPENAI_API_KEY:-}" ]] || {

639+

echo "OPENAI_API_KEY is required for installer Docker E2E." >&2

640+

exit 1

641+

}

642+

if [[ -z "${ANTHROPIC_API_TOKEN:-}" && -z "${ANTHROPIC_API_KEY:-}" ]]; then

643+

echo "ANTHROPIC_API_TOKEN or ANTHROPIC_API_KEY is required for installer Docker E2E." >&2

644+

exit 1

645+

fi

646+

fi

647+

if [[ "$lanes" == *" openwebui "* || "$lanes" == *" openai-web-search-minimal "* ]]; then

648+

[[ -n "${OPENAI_API_KEY:-}" ]] || {

649+

echo "OPENAI_API_KEY is required for selected OpenAI Docker lanes." >&2

650+

exit 1

651+

}

652+

fi

653+654+

- name: Run targeted Docker E2E lanes

655+

shell: bash

656+

run: |

657+

set -euo pipefail

658+

lanes=" ${DOCKER_E2E_LANES//,/ } "

659+

export OPENCLAW_DOCKER_ALL_LANES="${DOCKER_E2E_LANES}"

660+

export OPENCLAW_DOCKER_ALL_PREFLIGHT=0

661+

export OPENCLAW_DOCKER_ALL_FAIL_FAST=0

662+

export OPENCLAW_DOCKER_ALL_INCLUDE_OPENWEBUI="${INCLUDE_OPENWEBUI}"

663+

export OPENCLAW_DOCKER_ALL_LOG_DIR=".artifacts/docker-tests/targeted"

664+

export OPENCLAW_DOCKER_ALL_TIMINGS_FILE=".artifacts/docker-tests/targeted-timings.json"

665+

if [[ "$lanes" == *" live-"* ]]; then

666+

export OPENCLAW_DOCKER_ALL_BUILD=1

667+

else

668+

export OPENCLAW_DOCKER_ALL_BUILD=0

669+

fi

670+671+

pnpm test:docker:all

672+673+

- name: Summarize targeted Docker E2E lanes

674+

if: always()

675+

shell: bash

676+

run: |

677+

set -euo pipefail

678+

summary=".artifacts/docker-tests/targeted/summary.json"

679+

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

680+

echo "Docker targeted summary missing: \`$summary\`" >> "$GITHUB_STEP_SUMMARY"

681+

exit 0

682+

fi

683+

node --input-type=module - "$summary" <<'NODE' >> "$GITHUB_STEP_SUMMARY"

684+

import fs from "node:fs";

685+

const summary = JSON.parse(fs.readFileSync(process.argv[2], "utf8"));

686+

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

687+

console.log("### Docker E2E targeted lanes");

688+

console.log("");

689+

console.log(`Status: \`${summary.status}\``);

690+

console.log("");

691+

console.log("| Lane | Status | Seconds | Timed out | Rerun |");

692+

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

693+

for (const lane of lanes) {

694+

const status = lane.status === 0 ? "pass" : `fail ${lane.status}`;

695+

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

696+

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

697+

}

698+

NODE

699+700+

- name: Upload targeted Docker E2E artifacts

701+

if: always()

702+

uses: actions/upload-artifact@v7

703+

with:

704+

name: docker-e2e-targeted

705+

path: .artifacts/docker-tests/

706+

if-no-files-found: ignore

707+536708

validate_docker_openwebui:

537709

needs: [validate_selected_ref, prepare_docker_e2e_image]

538-

if: inputs.include_openwebui && !inputs.include_release_path_suites

710+

if: inputs.include_openwebui && !inputs.include_release_path_suites && inputs.docker_lanes == ''

539711

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

540712

timeout-minutes: 75

541713

env:

@@ -578,7 +750,7 @@ jobs:

578750579751

prepare_docker_e2e_image:

580752

needs: validate_selected_ref

581-

if: inputs.include_release_path_suites || inputs.include_openwebui

753+

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

582754

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

583755

timeout-minutes: 90

584756

permissions: