diff --git a/.github/workflows/openclaw-live-and-e2e-checks-reusable.yml b/.github/workflows/openclaw-live-and-e2e-checks-reusable.yml index a6bd4bcac3d9..344d1320df6c 100644 --- a/.github/workflows/openclaw-live-and-e2e-checks-reusable.yml +++ b/.github/workflows/openclaw-live-and-e2e-checks-reusable.yml @@ -563,7 +563,7 @@ jobs: needs: validate_selected_ref if: inputs.include_repo_e2e && inputs.live_suite_filter == '' continue-on-error: ${{ inputs.advisory }} - runs-on: ${{ inputs.use_github_hosted_runners && 'ubuntu-24.04' || 'blacksmith-8vcpu-ubuntu-2404' }} + runs-on: ${{ inputs.use_github_hosted_runners && 'ubuntu-24.04' || 'blacksmith-32vcpu-ubuntu-2404' }} timeout-minutes: ${{ inputs.release_test_profile == 'full' && 90 || 60 }} env: OPENCLAW_VITEST_MAX_WORKERS: "2" @@ -595,7 +595,7 @@ jobs: needs: validate_selected_ref if: inputs.include_repo_e2e && (inputs.live_suite_filter == '' || inputs.live_suite_filter == 'openshell-e2e') continue-on-error: ${{ inputs.advisory }} - runs-on: ${{ inputs.use_github_hosted_runners && 'ubuntu-24.04' || 'blacksmith-8vcpu-ubuntu-2404' }} + runs-on: ${{ inputs.use_github_hosted_runners && 'ubuntu-24.04' || 'blacksmith-32vcpu-ubuntu-2404' }} timeout-minutes: ${{ matrix.timeout_minutes }} strategy: fail-fast: false diff --git a/extensions/openai/openai.live.test.ts b/extensions/openai/openai.live.test.ts index a123d583429a..58ee30b5cc0e 100644 --- a/extensions/openai/openai.live.test.ts +++ b/extensions/openai/openai.live.test.ts @@ -408,9 +408,9 @@ describeLive("openai plugin live", () => { cfg, agentDir, authStore: EMPTY_AUTH_STORE, - timeoutMs: 180_000, + timeoutMs: 240_000, count: 1, - size: "1024x1536", + size: "1024x1024", inputImages: [ { buffer: createReferencePng(), @@ -427,7 +427,7 @@ describeLive("openai plugin live", () => { } finally { await removeTempAgentDir(agentDir); } - }, 240_000); + }, 300_000); it("describes a deterministic image through the registered media provider", async () => { const { mediaProviders } = await registerOpenAIPlugin();