From 46db8527895a1d0a9b8f421ada835a65461be627 Mon Sep 17 00:00:00 2001 From: Barak Korren Date: Wed, 22 Jul 2026 08:56:40 +0300 Subject: [PATCH] ci(e2e): raise behaviour job timeout to 45m URL-sourced harness behaviour scenarios push the suite past the 30m pull_request_target job ceiling. PRs cannot raise this themselves because pull_request_target uses the workflow from main. Signed-off-by: Barak Korren Co-authored-by: Cursor --- .github/workflows/e2e.yml | 2 +- Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index d39358ca1f..d0ba55951b 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -182,7 +182,7 @@ jobs: !cancelled() && (github.event_name != 'pull_request_target' || needs.gate.outputs.authorized == 'true') runs-on: ubuntu-24.04 - timeout-minutes: 30 + timeout-minutes: 45 permissions: contents: read id-token: write diff --git a/Makefile b/Makefile index d6e285efef..773e609697 100644 --- a/Makefile +++ b/Makefile @@ -156,7 +156,7 @@ e2e-test: go test -tags e2e -v -count=1 -timeout 30m ./e2e/admin/ behaviour-test: - go test -tags behaviour -v -count=1 -timeout 30m ./e2e/behaviour/ + go test -tags behaviour -v -count=1 -timeout 45m ./e2e/behaviour/ # Functional agent evals — run agents against ephemeral GitHub repos and judge results. # Required env: EVAL_ORG (GitHub org for ephemeral repos), plus GCP creds for Vertex AI.