Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion barretenberg/cpp/bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}

Expand Down
Loading