diff --git a/.github/benchmark_projects.yml b/.github/benchmark_projects.yml index 80982adc46b..2035a18ee44 100644 --- a/.github/benchmark_projects.yml +++ b/.github/benchmark_projects.yml @@ -1,5 +1,4 @@ -define: &AZ_COMMIT 7b7d960d51027b549ec9627ba2822fb87100a022 - +define: &AZ_COMMIT 6c0b83d4b73408f87acfa080d52a81c411e47336 projects: private-kernel-inner: repo: AztecProtocol/aztec-packages @@ -13,7 +12,7 @@ projects: private-kernel-tail: repo: AztecProtocol/aztec-packages ref: *AZ_COMMIT - path: noir-projects/noir-protocol-circuits/crates/private-kernel-tail + path: noir-projects/noir-protocol-circuits/crates/private-kernel-tail num_runs: 5 timeout: 4 compilation-timeout: 1.2 @@ -66,18 +65,18 @@ projects: cannot_execute: true num_runs: 1 timeout: 60 - compilation-timeout: 80 - compilation-memory-limit: 5500 + compilation-timeout: 100 + compilation-memory-limit: 7000 rollup-block-root: repo: AztecProtocol/aztec-packages ref: *AZ_COMMIT path: noir-projects/noir-protocol-circuits/crates/rollup-block-root num_runs: 1 timeout: 60 - compilation-timeout: 80 + compilation-timeout: 100 execution-timeout: 35 - compilation-memory-limit: 5500 - execution-memory-limit: 1200 + compilation-memory-limit: 7000 + execution-memory-limit: 1500 rollup-merge: repo: AztecProtocol/aztec-packages ref: *AZ_COMMIT diff --git a/EXTERNAL_NOIR_LIBRARIES.yml b/EXTERNAL_NOIR_LIBRARIES.yml index a0a6acc2d35..0ea37492803 100644 --- a/EXTERNAL_NOIR_LIBRARIES.yml +++ b/EXTERNAL_NOIR_LIBRARIES.yml @@ -1,5 +1,4 @@ -define: &AZ_COMMIT 7b7d960d51027b549ec9627ba2822fb87100a022 - +define: &AZ_COMMIT 6c0b83d4b73408f87acfa080d52a81c411e47336 libraries: noir_check_shuffle: repo: noir-lang/noir_check_shuffle diff --git a/scripts/bump-aztec-packges-commit.sh b/scripts/bump-aztec-packges-commit.sh new file mode 100755 index 00000000000..f3a9f5652d2 --- /dev/null +++ b/scripts/bump-aztec-packges-commit.sh @@ -0,0 +1,12 @@ +#!/bin/bash + +AZTEC_COMMIT=$(git ls-remote https://github.com/AztecProtocol/aztec-packages.git HEAD | grep -oE '^\b[0-9a-f]{40}\b') + +function bump_commit() { + FILE=$1 + AZTEC_COMMIT=$AZTEC_COMMIT yq -i '.define = env(AZTEC_COMMIT)' $FILE + +} + +bump_commit ./EXTERNAL_NOIR_LIBRARIES.yml +bump_commit ./.github/benchmark_projects.yml