From c9c741dbc7e00826049f5fd81e841420700e457a Mon Sep 17 00:00:00 2001 From: AztecBot Date: Sat, 27 Jun 2026 06:56:24 +0000 Subject: [PATCH] fix(bb): skip full Chonk pinned flow in debug CI --- barretenberg/cpp/bootstrap.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/barretenberg/cpp/bootstrap.sh b/barretenberg/cpp/bootstrap.sh index a114d2df881a..440a8389b3d0 100755 --- a/barretenberg/cpp/bootstrap.sh +++ b/barretenberg/cpp/bootstrap.sh @@ -273,7 +273,11 @@ function test_cmds_native { done || (echo "Failed to list tests in $bin" && exit 1) done - echo "$hash:CPUS=8:MEM=32g:TIMEOUT=20m barretenberg/cpp/scripts/run_test.sh bbapi_tests ChonkPinnedIvcInputsTest.AllPinnedFlows" + # The full pinned Chonk flow is a release-mode compatibility test. In debug + # builds it is extremely slow and has been the only failing shard in nightlies. + if [[ "$native_preset" != *debug* ]]; then + echo "$hash:CPUS=8:MEM=32g:TIMEOUT=20m barretenberg/cpp/scripts/run_test.sh bbapi_tests ChonkPinnedIvcInputsTest.AllPinnedFlows" + fi echo "$hash barretenberg/cpp/scripts/chonk_inputs.sh check" }