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

推荐订阅源

B
Blog
量子位
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Last Week in AI
Last Week in AI
酷 壳 – CoolShell
酷 壳 – CoolShell
人人都是产品经理
人人都是产品经理
Jina AI
Jina AI
雷峰网
雷峰网
博客园_首页
WordPress大学
WordPress大学
博客园 - 司徒正美
爱范儿
爱范儿
博客园 - 聂微东
IT之家
IT之家
美团技术团队
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 三生石上(FineUI控件)
有赞技术团队
有赞技术团队
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
T
Tailwind CSS Blog
博客园 - Franky
V
V2EX
GbyAI
GbyAI
阮一峰的网络日志
阮一峰的网络日志

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(openshell): provision gateway for e2e · openclaw/openc...
vincentkoc · 2026-06-24 · via Recent Commits to openclaw:main

@@ -609,7 +609,6 @@ jobs:

609609

requires_repo_e2e: true

610610

requires_live_suites: false

611611

env:

612-

OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}

613612

OPENCLAW_E2E_WORKERS: "1"

614613

OPENCLAW_VITEST_MAX_WORKERS: "1"

615614

steps:

@@ -643,9 +642,74 @@ jobs:

643642

set -euo pipefail

644643

case "${{ matrix.suite_id }}" in

645644

openshell-e2e)

645+

echo "OPENCLAW_E2E_OPENSHELL_CONFIG_HOME=$HOME/.config" >> "$GITHUB_ENV"

646646

;;

647647

esac

648648649+

- name: Install OpenShell CLI

650+

if: |

651+

(inputs.live_suite_filter == '' || inputs.live_suite_filter == matrix.suite_id) &&

652+

matrix.suite_id == 'openshell-e2e'

653+

shell: bash

654+

run: |

655+

set -euo pipefail

656+

export OPENSHELL_VERSION=v0.0.68

657+

curl -LsSf https://raw.githubusercontent.com/NVIDIA/OpenShell/d64542f69d06694cbd203b64929d286dd0533bbb/install.sh | sh

658+

openshell --version

659+660+

- name: Bootstrap OpenShell gateway

661+

if: |

662+

(inputs.live_suite_filter == '' || inputs.live_suite_filter == matrix.suite_id) &&

663+

matrix.suite_id == 'openshell-e2e'

664+

shell: bash

665+

run: |

666+

set -euo pipefail

667+

mtls_dir="$HOME/.config/openshell/gateways/openshell/mtls"

668+

gateway_tls_dir="$RUNNER_TEMP/openshell-gateway-certs"

669+

fallback_pid=""

670+

if ! openshell --gateway openshell sandbox list >/dev/null 2>&1; then

671+

rm -rf "$gateway_tls_dir"

672+

openshell-gateway generate-certs \

673+

--output-dir "$gateway_tls_dir" \

674+

--server-san 127.0.0.1 \

675+

--server-san localhost \

676+

--server-san host.openshell.internal

677+

rm -rf "$mtls_dir"

678+

mkdir -p "$mtls_dir"

679+

cp "$gateway_tls_dir/ca.crt" "$mtls_dir/ca.crt"

680+

cp "$gateway_tls_dir/client/tls.crt" "$mtls_dir/tls.crt"

681+

cp "$gateway_tls_dir/client/tls.key" "$mtls_dir/tls.key"

682+

openshell gateway remove openshell >/dev/null 2>&1 || true

683+

OPENSHELL_LOCAL_TLS_DIR="$gateway_tls_dir" nohup openshell-gateway \

684+

--bind-address 0.0.0.0 \

685+

--port 17670 \

686+

--drivers docker \

687+

--tls-cert "$gateway_tls_dir/server/tls.crt" \

688+

--tls-key "$gateway_tls_dir/server/tls.key" \

689+

--tls-client-ca "$mtls_dir/ca.crt" \

690+

>"$RUNNER_TEMP/openshell-gateway.log" 2>&1 &

691+

fallback_pid=$!

692+

echo "OPENCLAW_OPENSHELL_FALLBACK_PID=$fallback_pid" >> "$GITHUB_ENV"

693+

for _ in $(seq 1 30); do

694+

if openshell gateway add --local --name openshell https://127.0.0.1:17670; then

695+

break

696+

fi

697+

sleep 1

698+

done

699+

openshell gateway select openshell

700+

for _ in $(seq 1 60); do

701+

if openshell --gateway openshell sandbox list >/dev/null 2>&1; then

702+

break

703+

fi

704+

sleep 1

705+

done

706+

fi

707+

if [[ -z "$fallback_pid" ]]; then

708+

echo "OPENCLAW_OPENSHELL_FALLBACK_PID=" >> "$GITHUB_ENV"

709+

fi

710+

openshell --gateway openshell sandbox list >/dev/null

711+

openshell gateway list

712+649713

- name: Validate suite credentials

650714

if: inputs.live_suite_filter == '' || inputs.live_suite_filter == matrix.suite_id

651715

shell: bash

@@ -665,6 +729,15 @@ jobs:

665729

(inputs.live_suite_filter == '' || inputs.live_suite_filter == matrix.suite_id)

666730

run: ${{ matrix.command }}

667731732+

- name: Stop fallback OpenShell gateway

733+

if: always() && matrix.suite_id == 'openshell-e2e'

734+

shell: bash

735+

run: |

736+

set -euo pipefail

737+

if [[ -n "${OPENCLAW_OPENSHELL_FALLBACK_PID:-}" ]]; then

738+

kill "$OPENCLAW_OPENSHELL_FALLBACK_PID" 2>/dev/null || true

739+

fi

740+668741

validate_docker_e2e:

669742

needs: [validate_selected_ref, prepare_docker_e2e_image, plan_release_workflow_matrices]

670743

if: inputs.include_release_path_suites && inputs.docker_lanes == '' && needs.plan_release_workflow_matrices.outputs.docker_e2e_count != '0'