mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 20:50:50 +00:00
fix(ci): plan openwebui functional image
This commit is contained in:
@@ -36,6 +36,7 @@ function lane(name, command, options = {}) {
|
||||
live: options.live === true,
|
||||
noOutputTimeoutMs: options.noOutputTimeoutMs,
|
||||
name,
|
||||
needsLiveImage: options.needsLiveImage,
|
||||
retryPatterns: options.retryPatterns ?? [],
|
||||
retries: options.retries ?? 0,
|
||||
resources: options.resources ?? [],
|
||||
@@ -79,6 +80,7 @@ function liveLane(name, command, options = {}) {
|
||||
return lane(name, command, {
|
||||
...options,
|
||||
live: true,
|
||||
needsLiveImage: options.needsLiveImage ?? true,
|
||||
resources: ["live", ...liveProviderResources(options), ...(options.resources ?? [])],
|
||||
retryPatterns: options.retryPatterns ?? LIVE_RETRY_PATTERNS,
|
||||
retries: options.retries ?? DEFAULT_LIVE_RETRIES,
|
||||
@@ -158,6 +160,8 @@ export const mainLanes = [
|
||||
},
|
||||
),
|
||||
liveLane("openwebui", "OPENCLAW_SKIP_DOCKER_BUILD=1 pnpm test:docker:openwebui", {
|
||||
e2eImageKind: "functional",
|
||||
needsLiveImage: false,
|
||||
provider: "openai",
|
||||
resources: ["service"],
|
||||
timeoutMs: OPENWEBUI_TIMEOUT_MS,
|
||||
@@ -583,6 +587,8 @@ const legacyReleasePathChunks = {
|
||||
|
||||
function openWebUILane() {
|
||||
return liveLane("openwebui", "OPENCLAW_SKIP_DOCKER_BUILD=1 pnpm test:docker:openwebui", {
|
||||
e2eImageKind: "functional",
|
||||
needsLiveImage: false,
|
||||
provider: "openai",
|
||||
resources: ["service"],
|
||||
timeoutMs: OPENWEBUI_TIMEOUT_MS,
|
||||
|
||||
Reference in New Issue
Block a user