From 334b7c33a676613660a51e3dfe721ec294709bfa Mon Sep 17 00:00:00 2001 From: AztecBot Date: Fri, 3 Apr 2026 14:22:45 +0000 Subject: [PATCH] fix: restore test execution in ci-barretenberg CI modes PR #22061 switched ci-barretenberg from calling bootstrap.sh ci (which builds AND runs tests) to make targets that only collect test commands into /tmp/test_cmds without starting the test engine to execute them. This meant BB tests silently stopped running on merge-train/barretenberg PRs. Revert to calling bootstrap.sh ci directly. For ci-barretenberg, add explicit CRS download (the original motivation for #22061). For ci-barretenberg-full, barretenberg/bootstrap.sh already handles CRS download in bootstrap_all. --- bootstrap.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/bootstrap.sh b/bootstrap.sh index 42e5f026326d..33653474b5a3 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -844,7 +844,8 @@ case "$cmd" in export USE_TEST_CACHE=1 export AVM=0 export AVM_TRANSPILER=0 - make bb-cpp-native-tests + barretenberg/crs/bootstrap.sh + barretenberg/cpp/bootstrap.sh ci ;; "ci-barretenberg-full") export CI=1 @@ -854,7 +855,7 @@ case "$cmd" in export AVM_TRANSPILER=0 pull_submodules noir/bootstrap.sh build_native # Build nargo for acir_tests - make bb-tests bb-full-tests + barretenberg/bootstrap.sh ci ;; #######################