-
Notifications
You must be signed in to change notification settings - Fork 310
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Automated pull of development from the [noir](https://github.com/noir-lang/noir) programming language, a dependency of Aztec. BEGIN_COMMIT_OVERRIDE 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) END_COMMIT_OVERRIDE --------- Co-authored-by: Maxim Vezenov <[email protected]>
- Loading branch information
Showing
47 changed files
with
1,327 additions
and
1,157 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
130d99125a09110a3ee3e877d88d83b5aa37f369 | ||
819a53a7db921f40febc0e480539df3bfaf917a2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: Download Nargo | ||
description: Downloads the nargo binary from an artifact and adds it to the path | ||
|
||
runs: | ||
using: composite | ||
steps: | ||
- name: Download nargo binary | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: nargo | ||
path: ./nargo | ||
|
||
- name: Set nargo on PATH | ||
shell: bash | ||
run: | | ||
nargo_binary="${{ github.workspace }}/nargo/nargo" | ||
chmod +x $nargo_binary | ||
echo "$(dirname $nargo_binary)" >> $GITHUB_PATH |
Empty file.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.