-
Notifications
You must be signed in to change notification settings - Fork 199
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into tf/deduplicate-abi-code
* master: (22 commits) chore: Update ACIR artifacts (#3013) chore: update yarn.lock file (#3064) feat(formatter): add formatter support for array literals (#3061) chore(traits): updated the trait_function_calls test to include calls to and from static methods (functions without self) (#3034) fix: Parse parenthesized lvalues (#3058) feat(acir): Set dynamic array values (#3054) fix: change non-constant argument errors from `to_be_radix` from ICE to proper error (#3048) feat: add JS types for ABI and input maps (#3023) chore: remove clones in optimizer/transformer code (#3037) feat: add conditional compilation of methods based on the underlying field being used (#3045) chore: make `eval_constants` a pure function (#3027) chore: Formatter can now handle cast expressions (#3000) chore(tests): Rewrite some compile failure tests (#2850) feat: pass brillig bytecode to VM by reference (#3030) chore(formatter): prettier test diff output via `similar-asserts` (#3046) fix: disable modulo for fields (#3009) chore: parse fieldless structures (#3021) chore: publish to npm nightly (#3029) chore(tests): Test trait override of MutableReference of struct (#3011) chore: Add a flag to nargo to silence warnings (#3032) ...
- Loading branch information
Showing
162 changed files
with
2,599 additions
and
1,464 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
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,26 @@ | ||
name: Publish Nightly release | ||
on: | ||
workflow_dispatch: | ||
schedule: | ||
# Run a nightly release at 2 AM UTC | ||
- cron: "0 2 * * *" | ||
|
||
jobs: | ||
dispatch-publish-es: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Dispatch to publish-nargo | ||
uses: benc-uk/workflow-dispatch@v1 | ||
with: | ||
workflow: publish-nargo.yml | ||
token: ${{ secrets.NOIR_REPO_TOKEN }} | ||
# Omitting a tag results in a nightly | ||
inputs: "{ \"publish\": true }" | ||
|
||
|
||
- name: Dispatch to publish-es-packages | ||
uses: benc-uk/workflow-dispatch@v1 | ||
with: | ||
workflow: publish-es-packages.yml | ||
token: ${{ secrets.NOIR_REPO_TOKEN }} | ||
inputs: "{ \"noir-ref\": \"${{ env.GITHUB_REF }}\", \"nightly\": true }" |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.