From a305aefb8caa0e462f3f7ee535a6dbcadef871da Mon Sep 17 00:00:00 2001 From: saleel Date: Mon, 3 Feb 2025 14:06:35 +0400 Subject: [PATCH] chore: remove profiler cache fallback (#11680) Remove the fallback added to noir/bootstrap.sh in #11642 to handle noir-profiler until its included in cache. --- noir/bootstrap.sh | 5 ----- 1 file changed, 5 deletions(-) diff --git a/noir/bootstrap.sh b/noir/bootstrap.sh index 862ee1be7b4..08d9e325a4b 100755 --- a/noir/bootstrap.sh +++ b/noir/bootstrap.sh @@ -13,11 +13,6 @@ function build { denoise ./scripts/bootstrap_native.sh denoise ./scripts/bootstrap_packages.sh cache_upload noir-$hash.tar.gz noir-repo/target/release/nargo noir-repo/target/release/acvm noir-repo/target/release/noir-profiler packages - # if noir-profiler is not found in cache, build it (temp fix until profiler is included in the cache) - elif [ ! -f noir-repo/target/release/noir-profiler ]; then - cd noir-repo/tooling/profiler - cargo build --release - cd ../../.. fi github_endgroup }