fix: bump timeout and resources for AVM recursion tests in debug builds#22488
Closed
AztecBot wants to merge 1 commit into
Closed
fix: bump timeout and resources for AVM recursion tests in debug builds#22488AztecBot wants to merge 1 commit into
AztecBot wants to merge 1 commit into
Conversation
f5de5f4 to
64e3d4a
Compare
AvmRecursionInnerCircuitTests.Tampering was timing out at 600s in the nightly debug build. The test runs 3 iterations of prove+verify (~3.5min each in debug mode), exceeding the default timeout. Add AvmRecursionInnerCircuitTests to the TIMEOUT=900s list and to the CPUS=4:MEM=8g resource list. Also add AvmRecursionConstraintTest to the resource list since it uses up to 7.5GB of memory.
64e3d4a to
75a1125
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Fixes nightly barretenberg debug build failure (CI run).
AvmRecursionInnerCircuitTests.Tamperingwas timing out at the default 600s limit. The test runs 3 iterations of prove+verify (~3.5 minutes each in debug mode), totaling ~10 minutes — well over the 600s default. Exit code 124 (timeout).Root cause: The test name
AvmRecursionInnerCircuitTestswas not matched by the existing regex patterns inbarretenberg/cpp/bootstrap.shthat grant extra resources and extended timeouts.Fix:
AvmRecursionInnerCircuitTeststo both the resource (CPUS=4:MEM=8g) and timeout (TIMEOUT=900s) regex patternsAvmRecursionConstraintTestto the resource regex (uses up to 7.5GB memory in debug builds)Test plan