fix(ci): skip native ChonkPinnedIvcInputsTest in CI (nightly debug build)#23669
Closed
AztecBot wants to merge 1 commit into
Closed
fix(ci): skip native ChonkPinnedIvcInputsTest in CI (nightly debug build)#23669AztecBot wants to merge 1 commit into
AztecBot wants to merge 1 commit into
Conversation
Collaborator
Author
|
Automatically closing this stale claudebox draft PR (no updates for 5+ days). Re-open if still needed. |
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.
Problem
The Nightly Debug Build (
barretenberg-nightly-debug-build.yml) has failed every night for the last several days:Undeliverable(responseCode=-1); never reached the testThe persistent failure (runs 98–100) is the C++ test:
The pinned Chonk IVC inputs (
chonk-pinned-flows/*/ivc-inputs.msgpack) are stale relative to the current protocol circuits, so re-proving them trips the databus consistency check (the calldata commitment is the default generator point{1,2}).Root cause
This is the same failure #23643 ("chore: skip failing chonk_pinned_inputs.test in CI") meant to silence. That PR added a skip with regex
bbapi/chonk_pinned_inputs.test, which only matches the bb.js test command (barretenberg/ts/scripts/run_test.sh bbapi/chonk_pinned_inputs.test.js).The native gtest is emitted by
barretenberg/cpp/bootstrap.sh:276as:ci3/filter_test_cmdsskips commands bygrep -Evagainst the skip regexes — and that command line contains nobbapi/chonk_pinned_inputs.testsubstring, so it escaped the skip and kept running (and failing) in the nightly debug build.Fix
Add a second skip entry to
.test_patterns.ymlmatching the native gtest command, mirroring the existing bb.js skip (same owner). Verified that the new regex skips only the failing proving command and leaves thechonk_inputs.sh checkVK-check and all otherbbapi_testsrunning.This completes the intent of #23643. The proper long-term fix is to refresh the pinned inputs (
ci-refresh-chonk) so both tests can be re-enabled; that requires regenerating the pinned tarball and is left to the test owner.Created by claudebox · group:
slackbot