Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .test_patterns.yml
Original file line number Diff line number Diff line change
Expand Up @@ -291,3 +291,8 @@ tests:
flake_group_id: e2e-p2p-epoch-flakes
owners:
- *palla

- regex: "bb-prover/src/avm_proving_tests/avm_bulk.test.ts"
error_regex: "Exceeded timeout"
owners:
- *alex
4 changes: 2 additions & 2 deletions aztec-postprocess-contract/transpile_contract_and_gen_vks.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
set -euo pipefail

dir=$(dirname $0)
BB=${BB:-"$dir/../barretenberg/cpp/build/bin/bb"}
BB_BINARY_PATH=${BB_BINARY_PATH:-"$dir/../barretenberg/cpp/build/bin/bb"}

# No arguments provided - let bb auto-discover and process all artifacts
echo "Searching for contract artifacts in target/ directories..."
$BB aztec_process
$BB_BINARY_PATH aztec_process

echo "Contract postprocessing complete!"
2 changes: 1 addition & 1 deletion release-image/Dockerfile.dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
!/.release-please-manifest.json
!/avm-transpiler/target/release/avm-transpiler
!/aztec-postprocess-contract/transpile_contract_and_gen_vks.sh
!/barretenberg/cpp/build/bin/bb
!/barretenberg/cpp/build/bin/bb-avm
!/barretenberg/ts/dest/
!/barretenberg/ts/package.json
!/noir/noir-repo/target/release/nargo
Expand Down
3 changes: 2 additions & 1 deletion yarn-project/cli-wallet/src/bin/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,8 @@ async function main() {

const bbBinaryPath =
prover === 'native'
? resolve(dirname(fileURLToPath(import.meta.url)), '../../../../barretenberg/cpp/build/bin/bb')
? (process.env.BB_BINARY_PATH ??
resolve(dirname(fileURLToPath(import.meta.url)), '../../../../barretenberg/cpp/build/bin/bb'))
: undefined;
const bbWorkingDirectory = dataDir + '/bb';
mkdirSync(bbWorkingDirectory, { recursive: true });
Expand Down
Loading