Skip to content

Commit 749b13c

Browse files
committed
chore(bb): skip Chonk VK consistency check on aztec-packages-private
1 parent cf1a239 commit 749b13c

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

barretenberg/cpp/bootstrap.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,11 @@ function test_cmds_native {
253253
done || (echo "Failed to list tests in $bin" && exit 1)
254254
done
255255

256-
echo "$hash barretenberg/cpp/scripts/test_chonk_standalone_vks_havent_changed.sh"
256+
# The pinned IVC inputs / VKs live in the public repo; the private fork
257+
# carries divergent circuits so the check is expected to fail there.
258+
if [[ "${GITHUB_REPOSITORY,,}" != "aztecprotocol/aztec-packages-private" ]]; then
259+
echo "$hash barretenberg/cpp/scripts/test_chonk_standalone_vks_havent_changed.sh"
260+
fi
257261
}
258262

259263
function test_cmds_wasm_threads {

0 commit comments

Comments
 (0)