ci: cover plugin lanes in legacy release chunks

This commit is contained in:
Peter Steinberger
2026-05-09 11:00:55 +01:00
parent b59d46b699
commit 4312ca0464
2 changed files with 6 additions and 2 deletions

View File

@@ -480,6 +480,7 @@ const releasePathPluginRuntimeLanes = [
"OPENCLAW_SKIP_DOCKER_BUILD=1 pnpm test:docker:openai-web-search-minimal",
{ stateScenario: "empty", timeoutMs: 8 * 60 * 1000 },
),
livePluginToolLane(),
];
const releasePathPluginRuntimePluginLanes = [

View File

@@ -321,13 +321,13 @@ describe("scripts/lib/docker-e2e-plan", () => {
},
{
command: "OPENCLAW_SKIP_DOCKER_BUILD=1 pnpm test:docker:live-plugin-tool",
imageKind: "live",
imageKind: "bare",
live: true,
name: "live-plugin-tool",
resources: ["docker", "live", "live:openai", "npm"],
stateScenario: "empty",
timeoutMs: 1_200_000,
weight: 4,
weight: 3,
},
{
command: "OPENCLAW_SKIP_DOCKER_BUILD=1 pnpm test:docker:openwebui",
@@ -441,6 +441,7 @@ describe("scripts/lib/docker-e2e-plan", () => {
expect(packageUpdate.lanes.map((lane) => lane.name)).toEqual([
"install-e2e-openai",
"codex-on-demand",
"install-e2e-anthropic",
"npm-onboard-channel-agent",
"npm-onboard-discord-channel-agent",
@@ -456,6 +457,7 @@ describe("scripts/lib/docker-e2e-plan", () => {
...bundledPluginSweepLanes,
"cron-mcp-cleanup",
"openai-web-search-minimal",
"live-plugin-tool",
"openwebui",
]);
expect(legacy.lanes.map((lane) => lane.name)).toEqual([
@@ -463,6 +465,7 @@ describe("scripts/lib/docker-e2e-plan", () => {
...bundledPluginSweepLanes,
"cron-mcp-cleanup",
"openai-web-search-minimal",
"live-plugin-tool",
"plugin-update",
"openwebui",
]);