Skip to content

Commit 2c6001d

Browse files
committed
Merge remote-tracking branch 'origin/next' into lw/checkpoint_circuit
2 parents ffb69cb + 78c93ea commit 2c6001d

264 files changed

Lines changed: 8831 additions & 3218 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.87.6"
2+
".": "1.2.1"
33
}

.test_patterns.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,10 @@ tests:
137137
- regex: "src/e2e_p2p/preferred_gossip_network.test.ts"
138138
owners:
139139
- *palla
140+
- regex: "src/e2e_p2p/gossip_network.test.ts"
141+
error_regex: "Block 5 not yet synced"
142+
owners:
143+
- *palla
140144
- regex: "src/e2e_fees/private_payments"
141145
owners:
142146
- *phil

avm-transpiler/Cargo.lock

Lines changed: 16 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

aztec-up/bin/.aztec-run

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ done
8383
arg_volume_mounts="-v $HOME:$HOME -v cache:/cache"
8484

8585
# If we have an ssh agent running, mount it into container, or if on mac, forward it with socat.
86-
if [ -n "${SSH_AUTH_SOCK:-}" ]; then
86+
if [[ "${FORWARD_SSH_AGENT:-0}" == 1 && -n "${SSH_AUTH_SOCK:-}" ]]; then
8787
# warn "SSH_AUTH_SOCK is set to ${SSH_AUTH_SOCK:-}. Attempting to enable SSH agent forwarding..."
8888

8989
if [ "$uname" == "Darwin" ]; then

aztec-up/bin/aztec

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,9 @@ case ${1:-} in
163163

164164
RESTART_CODES="1 78 79" # ERROR, ROLLUP_UPGRADE, VERSION_UPGRADE
165165

166-
echo "Starting supervised Aztec application..."
166+
if [ "$SUPERVISED" == "1" ]; then
167+
echo "Starting supervised Aztec application..."
168+
fi
167169
set +e
168170
while true; do
169171
$(dirname $0)/.aztec-run aztec-start \

aztec-up/bin/aztec-wallet

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,6 @@ export ENV_VARS_TO_INJECT="SSH_AUTH_SOCK PXE_PROVER LOG_LEVEL"
66
# Appends 8 char hex to avoid container name clashes
77
export CONTAINER_NAME=aztec-wallet-$(printf "%08x" $((RANDOM * RANDOM)))
88

9+
export FORWARD_SSH_AGENT=1
10+
911
exec $(dirname $0)/.aztec-run aztec-wallet /usr/src/yarn-project/cli-wallet/wallet-entrypoint.sh "$@"

barretenberg/cpp/CMakePresets.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -344,6 +344,21 @@
344344
"CMAKE_BUILD_TYPE": "RelWithAssert"
345345
}
346346
},
347+
{
348+
"name": "fuzzing-noasm",
349+
"displayName": "Build with fuzzing and ASM disabled",
350+
"description": "Build default preset but with fuzzing enabled and ASM disabled",
351+
"inherits": "clang16",
352+
"binaryDir": "build-fuzzing-noasm",
353+
"cacheVariables": {
354+
"FUZZING": "ON",
355+
"DISABLE_AZTEC_VM": "ON",
356+
"DISABLE_ASM": "ON"
357+
},
358+
"environment": {
359+
"CMAKE_BUILD_TYPE": "RelWithAssert"
360+
}
361+
},
347362
{
348363
"name": "fuzzing-asan",
349364
"displayName": "Build with fuzzing",

barretenberg/cpp/docs/Fuzzing.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ The `run.sh` script supports several configuration options:
3333
- `-t, --timeout <seconds>`: Set maximum fuzzing time (default: 2592000 = 1 month)
3434
- `-v, --verbose`: Enable verbose output from the fuzzer
3535
- `-m, --mode <mode>`: Set operation mode - either `fuzzing` or `coverage` (default: fuzzing)
36+
- `-a, --asm <mode>`: Enable/disable asm - either `on` or `off` (default: on)
3637
- `-c, --cpus <count>`: Set number of CPUs for the container (default: 8)
3738
- `--mem <size>`: Set memory limit for the container (default: 16G)
3839
- `--show-fuzzers`: List all available fuzzers

0 commit comments

Comments
 (0)