-
Notifications
You must be signed in to change notification settings - Fork 226
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 kw/compile-artifacts
* master: (137 commits) chore: add `insert_range_check` method to `FunctionBuilder` (#3959) chore: remove usage of term "preprocessed" in favour of "artifact" (#3939) feat(lsp): goto trait from trait impl (#3956) fix: preserve brillig entrypoint functions without arguments (#3951) feat: implement `Eq` trait on curve points (#3944) chore: fixing links to the blackbox functions (#3941) feat(lsp): cache definitions for goto requests (#3930) feat: remove range constraints from witnesses which are constrained to be constants (#3928) fix: implement missing codegen for `BlackBoxFunc::EcdsaSecp256r1` in brillig (#3943) chore(debugger): Integration tests (#3938) fix: handle multiple imports in the same file (#3903) feat: add foreign call support to `noir_codegen` functions (#3933) feat: Implement Operator Overloading (#3931) chore: fix casing on `InternalError::Unexpected` (#3937) chore: add test case for brillig array equality assertion (#3936) feat(lsp): goto struct member inside Impl method (#3918) chore: fix broken links (#3935) chore: updated ACIR documentation and other docs (#3932) chore: rename "syntax" chapter in docs to "concepts" (#3934) fix: checks for cyclic dependencies (#3699) ...
- Loading branch information
Showing
741 changed files
with
17,916 additions
and
20,840 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
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 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
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 |
---|---|---|
|
@@ -11,6 +11,7 @@ jobs: | |
outputs: | ||
release-pr: ${{ steps.release.outputs.pr }} | ||
tag-name: ${{ steps.release.outputs.tag_name }} | ||
pending-release-semver: v${{ steps.release.outputs.major }}.${{steps.release.outputs.minor}}.${{steps.release.outputs.patch}} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Run release-please | ||
|
@@ -39,35 +40,9 @@ jobs: | |
run: | | ||
./scripts/update-acvm-workspace-versions.sh | ||
- name: Configure git | ||
run: | | ||
git config user.name kevaundray | ||
git config user.email [email protected] | ||
- name: Commit updates | ||
run: | | ||
git add Cargo.toml | ||
git commit -m 'chore: Update root workspace acvm versions' | ||
git push | ||
update-lockfile: | ||
name: Update lockfile | ||
needs: [release-please,update-acvm-workspace-package-versions] | ||
if: ${{ needs.release-please.outputs.release-pr }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout release branch | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ fromJSON(needs.release-please.outputs.release-pr).headBranchName }} | ||
token: ${{ secrets.NOIR_RELEASES_TOKEN }} | ||
|
||
- name: Setup toolchain | ||
uses: dtolnay/[email protected] | ||
|
||
- name: Update lockfile | ||
run: | | ||
cargo update --workspace | ||
cargo update --workspace | ||
- name: Configure git | ||
run: | | ||
|
@@ -76,15 +51,16 @@ jobs: | |
- name: Commit updates | ||
run: | | ||
git add Cargo.lock | ||
git commit -m 'chore: Update lockfile' | ||
git add . | ||
git commit -m 'chore: Update root workspace acvm versions and lockfile' | ||
git push | ||
update-docs: | ||
name: Update docs | ||
needs: [release-please, update-lockfile] | ||
if: ${{ needs.release-please.outputs.tag-name }} | ||
needs: [release-please, update-acvm-workspace-package-versions] | ||
if: ${{ needs.release-please.outputs.release-pr }} | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout release branch | ||
uses: actions/checkout@v4 | ||
|
@@ -102,7 +78,7 @@ jobs: | |
|
||
- name: Cut a new version | ||
working-directory: ./docs | ||
run: yarn docusaurus docs:version ${{ needs.release-please.outputs.tag-name }} | ||
run: yarn docusaurus docs:version ${{ needs.release-please.outputs.pending-release-semver }} | ||
|
||
- name: Configure git | ||
run: | | ||
|
@@ -112,7 +88,7 @@ jobs: | |
- name: Commit new documentation version | ||
run: | | ||
git add . | ||
git commit -m "chore(docs): cut new docs version for tag ${{ needs.release-please.outputs.tag-name }}" | ||
git commit -m "chore(docs): cut new docs version for tag ${{ needs.release-please.outputs.pending-release-semver }}" | ||
git push | ||
build-binaries: | ||
|
@@ -144,21 +120,6 @@ jobs: | |
token: ${{ secrets.NOIR_REPO_TOKEN }} | ||
inputs: '{ "noir-ref": "${{ needs.release-please.outputs.tag-name }}", "npm-tag": "latest" }' | ||
|
||
publish-docs: | ||
name: Publish docs | ||
needs: [release-please] | ||
if: ${{ needs.release-please.outputs.tag-name }} | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Dispatch to publish-docs | ||
uses: benc-uk/workflow-dispatch@v1 | ||
with: | ||
workflow: publish-docs.yml | ||
ref: master | ||
token: ${{ secrets.NOIR_REPO_TOKEN }} | ||
inputs: '{ "noir-ref": "${{ needs.release-please.outputs.tag-name }}" }' | ||
|
||
publish-acvm: | ||
name: Publish acvm | ||
needs: [release-please] | ||
|
Oops, something went wrong.