mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 18:50:42 +00:00
ci: shard release live validation
This commit is contained in:
@@ -37,6 +37,7 @@ export function parseLaneSelection(raw) {
|
||||
}
|
||||
const laneAliases = new Map([
|
||||
["bundled-channel-deps", ["bundled-channel-deps-compat"]],
|
||||
["install-e2e", ["install-e2e-openai", "install-e2e-anthropic"]],
|
||||
[
|
||||
"bundled-plugin-install-uninstall",
|
||||
Array.from(
|
||||
@@ -145,8 +146,11 @@ export function findLaneByName(name) {
|
||||
|
||||
export function laneCredentialRequirements(poolLane) {
|
||||
const credentials = [];
|
||||
if (poolLane.name === "install-e2e") {
|
||||
credentials.push("openai", "anthropic");
|
||||
if (poolLane.name === "install-e2e-openai") {
|
||||
credentials.push("openai");
|
||||
}
|
||||
if (poolLane.name === "install-e2e-anthropic") {
|
||||
credentials.push("anthropic");
|
||||
}
|
||||
if (poolLane.name === "openwebui" || poolLane.name === "openai-web-search-minimal") {
|
||||
credentials.push("openai");
|
||||
|
||||
@@ -400,11 +400,19 @@ const releasePathChunks = {
|
||||
],
|
||||
"package-update": [
|
||||
npmLane(
|
||||
"install-e2e",
|
||||
"OPENCLAW_INSTALL_TAG=beta OPENCLAW_E2E_MODELS=both pnpm test:install:e2e",
|
||||
"install-e2e-openai",
|
||||
"OPENCLAW_INSTALL_TAG=beta OPENCLAW_E2E_MODELS=openai OPENCLAW_INSTALL_E2E_IMAGE=openclaw-install-e2e-openai:local pnpm test:install:e2e",
|
||||
{
|
||||
resources: ["service"],
|
||||
weight: 4,
|
||||
weight: 3,
|
||||
},
|
||||
),
|
||||
npmLane(
|
||||
"install-e2e-anthropic",
|
||||
"OPENCLAW_INSTALL_TAG=beta OPENCLAW_E2E_MODELS=anthropic OPENCLAW_INSTALL_E2E_IMAGE=openclaw-install-e2e-anthropic:local pnpm test:install:e2e",
|
||||
{
|
||||
resources: ["service"],
|
||||
weight: 3,
|
||||
},
|
||||
),
|
||||
npmLane(
|
||||
|
||||
Reference in New Issue
Block a user