ci: give OpenAI package lane cleanup margin · openclaw/openclaw@4e80aa8
steipete
·
2026-05-10
·
via Recent Commits to openclaw:main
| Original file line number | Diff line number | Diff line change |
|---|
@@ -618,7 +618,7 @@ jobs:
|
618 | 618 | timeout_minutes: 120 |
619 | 619 | - chunk_id: package-update-openai |
620 | 620 | label: package/update OpenAI install |
621 | | -timeout_minutes: 30 |
| 621 | +timeout_minutes: 35 |
622 | 622 | - chunk_id: package-update-anthropic |
623 | 623 | label: package/update Anthropic install |
624 | 624 | timeout_minutes: 180 |
|
| Original file line number | Diff line number | Diff line change |
|---|
@@ -535,12 +535,14 @@ const releasePathPackageInstallOpenAiLanes = [
|
535 | 535 | "OPENCLAW_INSTALL_TAG=beta OPENCLAW_E2E_MODELS=openai OPENCLAW_INSTALL_E2E_IMAGE=openclaw-install-e2e-openai:local OPENCLAW_INSTALL_E2E_AGENT_TURN_TIMEOUT_SECONDS=1500 OPENCLAW_INSTALL_E2E_AGENT_TURNS_PARALLEL=0 OPENCLAW_INSTALL_E2E_OPENAI_MODEL=openai/gpt-5.4-mini OPENCLAW_INSTALL_E2E_OPENAI_PROVIDER_TIMEOUT_SECONDS=300 pnpm test:install:e2e", |
536 | 536 | { |
537 | 537 | resources: ["service"], |
| 538 | +timeoutMs: 30 * 60 * 1000, |
538 | 539 | weight: 3, |
539 | 540 | }, |
540 | 541 | ), |
541 | 542 | npmLane("codex-on-demand", "OPENCLAW_SKIP_DOCKER_BUILD=1 pnpm test:docker:codex-on-demand", { |
542 | 543 | resources: ["service"], |
543 | 544 | stateScenario: "empty", |
| 545 | +timeoutMs: 30 * 60 * 1000, |
544 | 546 | weight: 3, |
545 | 547 | }), |
546 | 548 | ]; |
|
| Original file line number | Diff line number | Diff line change |
|---|
@@ -634,6 +634,7 @@ describe("scripts/lib/docker-e2e-plan", () => {
|
634 | 634 | expect(lane.name).toBe("codex-on-demand"); |
635 | 635 | expect(lane.resources).toEqual(["docker", "npm", "service"]); |
636 | 636 | expect(lane.stateScenario).toBe("empty"); |
| 637 | +expect(lane.timeoutMs).toBe(1_800_000); |
637 | 638 | expect(plan.needs.bareImage).toBe(true); |
638 | 639 | expect(plan.needs.package).toBe(true); |
639 | 640 | }); |
@@ -756,6 +757,7 @@ describe("scripts/lib/docker-e2e-plan", () => {
|
756 | 757 | live: false, |
757 | 758 | name: "install-e2e-openai", |
758 | 759 | resources: ["docker", "npm", "service"], |
| 760 | +timeoutMs: 1_800_000, |
759 | 761 | weight: 3, |
760 | 762 | }, |
761 | 763 | { |
|
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。