From 39c623898dc73db33f0fe2a4c7b11c6f7503e044 Mon Sep 17 00:00:00 2001 From: AztecBot Date: Fri, 12 Jun 2026 05:01:24 +0000 Subject: [PATCH] fix(ci): raise AVM check-circuit per-tx timeout from 30s to 120s --- yarn-project/end-to-end/bootstrap.sh | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/yarn-project/end-to-end/bootstrap.sh b/yarn-project/end-to-end/bootstrap.sh index 011679338e8f..a3c1688f6459 100755 --- a/yarn-project/end-to-end/bootstrap.sh +++ b/yarn-project/end-to-end/bootstrap.sh @@ -198,11 +198,13 @@ function avm_check_circuit_cmds { # Commands run from repo root via parallelize, so use path from top local dump_dir_from_top="yarn-project/end-to-end/$default_avm_inputs_dump_dir" - # Specify timeout and resources - # WARNING: theoretically, transactions could need more CPU and MEM than we allocate by default. - # In that case, they might start timing out. For now, all of the e2e test txs seem to be relatively - # small and the AVM can run check-circuit with limited resources. - local prefix="$hash:ISOLATE=1:TIMEOUT=30s" + # Specify timeout and resources. + # Heavier txs (e.g. e2e_multiple_blobs produces a ~700k-row circuit) take ~40s for trace + # generation plus the check-circuit pass with the default 2 CPUs, which exceeded the old 30s + # timeout. We keep CPUS at the default 2 (parallelize already runs num_cpus/2 jobs, so 2 CPUs each + # fully utilizes the box without oversubscription) and give a generous timeout so the nightly does + # not flake as circuits grow. Bump the timeout further if larger txs start timing out. + local prefix="$hash:ISOLATE=1:TIMEOUT=120s" # Find all .bin files in the dump directory (handles nested dirs) for input_file in "$default_avm_inputs_dump_dir"/*/*.bin "$default_avm_inputs_dump_dir"/*/*/*.bin; do