From 8ad4e858fda2504e1b7ffd5856761bb1890d7405 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Wed, 29 Jul 2026 00:47:55 -0700 Subject: [PATCH] =?UTF-8?q?fix(ci):=20repair=20red=20main=20=E2=80=94=20al?= =?UTF-8?q?ign=20QA=20evidence=20timeout=20guard,=20drop=20stale=20code-mo?= =?UTF-8?q?de=20symbols?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The qa-profile-evidence timeout was deliberately raised to 90m (28e09a04d3d) without its workflow guard; code-mode-repair.ts grew a local copy of CodeModeFailurePhase stranding the runtime re-export, and the matrix test kept an unused validateQaEvidenceSummaryJson import. --- src/agents/code-mode-runtime.ts | 1 - test/scripts/ci-workflow-guards.test.ts | 2 +- test/scripts/code-mode-model-matrix.test.ts | 1 - 3 files changed, 1 insertion(+), 3 deletions(-) diff --git a/src/agents/code-mode-runtime.ts b/src/agents/code-mode-runtime.ts index f90d47e2584d..53f54a3c9209 100644 --- a/src/agents/code-mode-runtime.ts +++ b/src/agents/code-mode-runtime.ts @@ -51,7 +51,6 @@ export type CodeModeConfig = { }; export type { - CodeModeFailurePhase, CodeModeSettlementMode, PendingBridgeRequest, SettledBridgeRequest, diff --git a/test/scripts/ci-workflow-guards.test.ts b/test/scripts/ci-workflow-guards.test.ts index cf09cff56332..9e3539dd8841 100644 --- a/test/scripts/ci-workflow-guards.test.ts +++ b/test/scripts/ci-workflow-guards.test.ts @@ -4852,7 +4852,7 @@ printf '%s\n' "\${CURL_SUCCESS_IP:-203.0.113.7}" expect(qaEvidenceWorkflow.on.workflow_dispatch.inputs.qa_profile).not.toHaveProperty("options"); expect(qaEvidenceWorkflow.on.workflow_dispatch.inputs.qa_profile.default).toBe("all"); expect(qaEvidenceWorkflow.on.workflow_call.inputs.qa_profile.type).toBe("string"); - expect(qaRunJob["timeout-minutes"]).toBe(60); + expect(qaRunJob["timeout-minutes"]).toBe(90); const validateProfileStep = qaRunJob.steps.find( (step: WorkflowStep) => step.name === "Validate QA profile input", ); diff --git a/test/scripts/code-mode-model-matrix.test.ts b/test/scripts/code-mode-model-matrix.test.ts index 0bd7545e0604..724848a6ca8d 100644 --- a/test/scripts/code-mode-model-matrix.test.ts +++ b/test/scripts/code-mode-model-matrix.test.ts @@ -11,7 +11,6 @@ import { reserveCodeModeMatrixOutputDir, resolveCodeModeMatrixOutputDir, runCodeModeModelMatrix, - validateQaEvidenceSummaryJson, type CodeModeMatrixCellResult, } from "../../scripts/code-mode-model-matrix.ts"; import type { AgentExecEnvelope } from "../../src/commands/agent-exec.ts";