ci: stabilize live e2e resource lanes

This commit is contained in:
Vincent Koc
2026-06-04 02:59:46 +02:00
parent 7b5f75eb98
commit 4fbc318e30
2 changed files with 5 additions and 5 deletions

View File

@@ -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

View File

@@ -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();