Skip to content

Commit

Permalink
chore: update path to acir artifacts (#3426)
Browse files Browse the repository at this point in the history
This PR updates the path to the acir artifacts to match
noir-lang/noir#3485
  • Loading branch information
TomAFrench authored Nov 27, 2023
1 parent 98d9e04 commit f56f88d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions barretenberg/acir_tests/clone_test_vectors.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ if [ ! -d acir_tests ]; then
git clone -b $BRANCH --filter=blob:none --no-checkout https://github.com/noir-lang/noir.git
cd noir
git sparse-checkout init --cone
git sparse-checkout set tooling/nargo_cli/tests/acir_artifacts
git sparse-checkout set test_programs/acir_artifacts
git checkout
cd ..
mv noir/tooling/nargo_cli/tests/acir_artifacts acir_tests
mv noir/test_programs/acir_artifacts acir_tests
rm -rf noir
fi
fi
fi
4 changes: 2 additions & 2 deletions barretenberg/acir_tests/gen_inner_proof_inputs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ set -eu

BIN=${BIN:-../cpp/build/bin/bb}
CRS_PATH=~/.bb-crs
BRANCH=master
BRANCH=tf/restructure-integration-tests
VERBOSE=${VERBOSE:-}
RECURSIVE=true
PROOF_NAME="proof_a"
Expand Down Expand Up @@ -42,4 +42,4 @@ echo "Write proof as fields for recursion..."
$BIN proof_as_fields $VFLAG -c $CRS_PATH -p "./proofs/$PROOF_NAME"

cat ./proofs/${PROOF_NAME}_fields.json
echo
echo
4 changes: 2 additions & 2 deletions barretenberg/acir_tests/run_acir_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ trap handle_sigchild SIGCHLD
BIN=${BIN:-../cpp/build/bin/bb}
FLOW=${FLOW:-prove_and_verify}
CRS_PATH=~/.bb-crs
BRANCH=master
BRANCH=tf/restructure-integration-tests
VERBOSE=${VERBOSE:-}
TEST_NAMES=("$@")
# We get little performance benefit over 16 cores (in fact it can be worse).
Expand Down Expand Up @@ -89,4 +89,4 @@ fi
wait

# Check for parallel errors
check_error_file
check_error_file

0 comments on commit f56f88d

Please sign in to comment.