@@ -147,18 +147,6 @@ function build_fuzzing_syntax_check_only {
147147 cache_upload barretenberg-fuzzing-$hash .zst build-fuzzing/syntax-check-success.flag
148148}
149149
150- # Do basic tests that the smt preset still compiles and runs
151- function build_smt_verification {
152- set -eu
153- if cache_download barretenberg-smt-$hash .zst; then
154- return
155- fi
156- sudo apt update && sudo apt install -y python3-pip python3-venv m4
157- cmake --preset smt-verification
158- cmake --build build-smt --target smt_verification_tests
159- cache_upload barretenberg-smt-$hash .zst build-smt/bin
160- }
161-
162150function build_release {
163151 local arch=$( arch)
164152 rm -rf build-release
@@ -177,7 +165,7 @@ function build_release {
177165 fi
178166}
179167
180- export -f build_preset build_native build_asan_fast build_darwin build_nodejs_module build_wasm build_wasm_threads build_gcc_syntax_check_only build_fuzzing_syntax_check_only build_smt_verification
168+ export -f build_preset build_native build_asan_fast build_darwin build_nodejs_module build_wasm build_wasm_threads build_gcc_syntax_check_only build_fuzzing_syntax_check_only
181169
182170function build {
183171 echo_header " bb cpp build"
@@ -188,7 +176,7 @@ function build {
188176 build_wasm_threads
189177 )
190178 if [ " $( arch) " == " amd64" ] && [ " $CI " -eq 1 ]; then
191- builds+=(build_gcc_syntax_check_only build_fuzzing_syntax_check_only build_smt_verification build_asan_fast)
179+ builds+=(build_gcc_syntax_check_only build_fuzzing_syntax_check_only build_asan_fast)
192180 fi
193181 if [ " $CI_FULL " -eq 1 ]; then
194182 builds+=(build_darwin)
@@ -237,13 +225,6 @@ function test_cmds {
237225 echo -e " $prefix barretenberg/cpp/build-asan-fast/bin/$bin_name --gtest_filter=$filter "
238226 done
239227 fi
240-
241- # Run the SMT compatibility tests
242- if [ " $( arch) " == " amd64" ] && [ " $CI " -eq 1 ]; then
243- local prefix=" $hash :CPUS=4:MEM=8g"
244- echo -e " $prefix barretenberg/cpp/build-smt/bin/smt_verification_tests"
245- fi
246-
247228 echo " $hash barretenberg/cpp/scripts/test_civc_standalone_vks_havent_changed.sh"
248229}
249230
@@ -275,7 +256,7 @@ function bench_cmds {
275256 echo " $prefix barretenberg/cpp/scripts/run_bench.sh native bb-micro-bench/native/client_ivc_verify build/bin/client_ivc_bench VerificationOnly$"
276257}
277258
278- # Runs benchmarks sharded over mache cores.
259+ # Runs benchmarks sharded over machine cores.
279260function bench {
280261 echo_header " bb bench"
281262 rm -rf bench-out && mkdir -p bench-out
@@ -353,7 +334,7 @@ case "$cmd" in
353334 " hash" )
354335 echo $hash
355336 ;;
356- test|test_cmds|bench|bench_cmds|build_bench|release|build_native|build_nodejs_module|build_asan_fast|build_wasm|build_wasm_threads|build_gcc_syntax_check_only|build_fuzzing_syntax_check_only|build_darwin|build_release|build_smt_verification| inject_version)
337+ test|test_cmds|bench|bench_cmds|build_bench|release|build_native|build_nodejs_module|build_asan_fast|build_wasm|build_wasm_threads|build_gcc_syntax_check_only|build_fuzzing_syntax_check_only|build_darwin|build_release|inject_version)
357338 $cmd " $@ "
358339 ;;
359340 * )
0 commit comments