Skip to content

Commit 57cc2f3

Browse files
committed
update PR #24268
1 parent ff238dd commit 57cc2f3

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

barretenberg/docs/bootstrap.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ function build {
3434
function test_cmds {
3535
# The recursive example proves a circuit embedding a full in-circuit Honk verifier in WASM; on the
3636
# default 2-CPU budget that prove+verify lands ~140-340s and intermittently trips the jest timeout.
37-
# A 4-CPU budget roughly halves it; TIMEOUT is the outer ci3 wrapper, above the jest per-test cap.
38-
echo "$hash:CPUS=4:TIMEOUT=900s barretenberg/docs/bootstrap.sh test"
37+
# A 4-CPU budget roughly halves it, back well under the per-test cap.
38+
echo "$hash:CPUS=4 barretenberg/docs/bootstrap.sh test"
3939
}
4040

4141
function test {

barretenberg/docs/examples/recursive.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,5 +134,5 @@ describe('Recursive Aggregation Example', () => {
134134
// Verify the recursive proof
135135
const isValid = await recursiveBackend.verifyProof(recursiveProofData);
136136
expect(isValid).toBe(true);
137-
}, 480000);
137+
}, 360000);
138138
});

0 commit comments

Comments
 (0)