Skip to content

Commit 8cf1787

Browse files
committed
[1 changes] fix: avoid stack overflow on many comments in a row (noir-lang/noir#7325)
chore: bump noir_bigcurve timeout (noir-lang/noir#7322) fix!: check abi integer input is within signed range (noir-lang/noir#7316) chore: add timeouts to reports CI (noir-lang/noir#7317) fix: allows for infinite brillig loops (noir-lang/noir#7296) feat: simplify `Ord` implementation for arrays (noir-lang/noir#7305) feat: `assert` and `assert_eq` are now expressions (noir-lang/noir#7313) chore: fix memory reports in CI (noir-lang/noir#7311) chore: remove Recoverable (noir-lang/noir#7307) feat: Sync from aztec-packages (noir-lang/noir#7293) chore: reduce number of benchmarking scripts (noir-lang/noir#7285) fix: error on if without else when type mismatch (noir-lang/noir#7302) fix: error on trailing doc comment (noir-lang/noir#7300) fix: always normalize ssa when priting at least one pass (noir-lang/noir#7299) fix: mark field division and modulo as requiring predicate for all necessary types (noir-lang/noir#7290) chore: push inlining info code into a submodule (noir-lang/noir#7266) chore: create a CI action to download nargo and add to path (noir-lang/noir#7281) chore: add sha256 library to test suite (noir-lang/noir#7278) feat: infer lambda parameter types from return type and let type (noir-lang/noir#7267) chore: replace benchmarks on fast test suites with a cut-off (noir-lang/noir#7276) fix(ssa): Unused functions removals post folding constant Brillig calls (noir-lang/noir#7265)
1 parent b60a39d commit 8cf1787

File tree

65 files changed

+1746
-1268
lines changed

Some content is hidden

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

65 files changed

+1746
-1268
lines changed

.noir-sync-commit

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
130d99125a09110a3ee3e877d88d83b5aa37f369
1+
ac1da8f4b57290a67240973a7d6172cfbf5680a8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Download Nargo
2+
description: Downloads the nargo binary from an artifact and adds it to the path
3+
4+
runs:
5+
using: composite
6+
steps:
7+
- name: Download nargo binary
8+
uses: actions/download-artifact@v4
9+
with:
10+
name: nargo
11+
path: ./nargo
12+
13+
- name: Set nargo on PATH
14+
shell: bash
15+
run: |
16+
nargo_binary="${{ github.workspace }}/nargo/nargo"
17+
chmod +x $nargo_binary
18+
echo "$(dirname $nargo_binary)" >> $GITHUB_PATH

noir/noir-repo/.github/critical_libraries_status/noir-lang/sha256/.failures.jsonl

Whitespace-only changes.

noir/noir-repo/.github/scripts/merge-bench-reports.sh

-27
This file was deleted.

noir/noir-repo/.github/workflows/formatting.yml

+1-12
Original file line numberDiff line numberDiff line change
@@ -123,18 +123,7 @@ jobs:
123123
uses: actions/checkout@v4
124124

125125
- name: Download nargo binary
126-
uses: actions/download-artifact@v4
127-
with:
128-
name: nargo
129-
path: ./nargo
130-
131-
- name: Set nargo on PATH
132-
run: |
133-
nargo_binary="${{ github.workspace }}/nargo/nargo"
134-
chmod +x $nargo_binary
135-
echo "$(dirname $nargo_binary)" >> $GITHUB_PATH
136-
export PATH="$PATH:$(dirname $nargo_binary)"
137-
nargo -V
126+
uses: ./.github/actions/download-nargo
138127

139128
- name: Format stdlib
140129
working-directory: ./noir_stdlib

0 commit comments

Comments
 (0)