Skip to content

Commit 1eddce4

Browse files
committed
chore: Update Noir to nightly-2026-01-27
Automated update of Noir submodule to latest nightly. **Current**: unknown **New**: nightly-2026-01-27 [View changes in noir-lang/noir](noir-lang/noir@584cc8c...nightly-2026-01-27)
1 parent 6be0df0 commit 1eddce4

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed

noir-projects/mock-protocol-circuits/bootstrap.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
source $(git rev-parse --show-toplevel)/ci3/source
33

44
NOIR_PROTOCOL_CIRCUITS_WORKING_DIR="$(pwd)" ../noir-protocol-circuits/bootstrap.sh "${1:-}"
5+
NOIR_PROTOCOL_CIRCUITS_SKIP_CHECK_WARNINGS=true

noir-projects/noir-protocol-circuits/bootstrap.sh

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -144,12 +144,14 @@ export -f hex_to_fields_json compile
144144
function build {
145145
set -eu
146146

147-
echo_stderr "Checking libraries for warnings..."
148-
parallel -v --line-buffer --tag $NARGO --program-dir {} check ::: \
149-
./crates/blob \
150-
./crates/private-kernel-lib \
151-
./crates/rollup-lib \
152-
./crates/types \
147+
if [[ -z NOIR_PROTOCOL_CIRCUITS_SKIP_CHECK_WARNINGS ]]; then
148+
echo_stderr "Checking libraries for warnings..."
149+
parallel -v --line-buffer --tag $NARGO --program-dir {} check ::: \
150+
./crates/blob \
151+
./crates/private-kernel-lib \
152+
./crates/rollup-lib \
153+
./crates/types
154+
fi
153155

154156
# We allow errors so we can output the joblog.
155157
set +e

noir/noir-repo

Submodule noir-repo updated 174 files

0 commit comments

Comments
 (0)