-
Notifications
You must be signed in to change notification settings - Fork 1
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 acvm-0.12.0
* master: chore: enforce type on oracle callback function (#15) chore: add jsdoc for `execute_circuit` (#13) chore: add release-please action (#12) chore: add smoketest for build-info (#11) chore(ci): add eslint to CI (#10) feat: Enforce `WitnessMap` type in TS (#9) chore: add type aliases for tests (#7) feat: use JS naming convention for generated functions (#6) chore: remove unnecessary peer dependency
- Loading branch information
Showing
17 changed files
with
298 additions
and
105 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 |
---|---|---|
@@ -0,0 +1,54 @@ | ||
name: Release | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
release-please: | ||
name: Create Release | ||
outputs: | ||
tag-name: ${{ steps.release.outputs.tag_name }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Run release-please | ||
id: release | ||
uses: google-github-actions/release-please-action@v3 | ||
with: | ||
release-type: node | ||
bump-minor-pre-major: true | ||
bump-patch-for-minor-pre-major: true | ||
pull-request-title-pattern: "chore: Release ${version}" | ||
extra-files: | | ||
Cargo.toml | ||
update-lockfile: | ||
name: Update lockfile | ||
needs: [release-please] | ||
if: ${{ needs.release-please.outputs.release-pr }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout release branch | ||
uses: actions/checkout@v3 | ||
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 | ||
- name: Configure git | ||
run: | | ||
git config user.name tomafrench | ||
git config user.email [email protected] | ||
- name: Commit updates | ||
run: | | ||
git add Cargo.lock | ||
git commit -m 'chore: Update lockfile' | ||
git push |
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,23 @@ | ||
name: Typescript | ||
|
||
on: [push, pull_request] | ||
|
||
# This will cancel previous runs when a branch or PR is updated | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.head_ref || github.ref || github.run_id }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
eslint: | ||
name: Eslint | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout sources | ||
uses: actions/checkout@v3 | ||
|
||
- name: Install dependencies | ||
uses: ./.github/actions/setup | ||
|
||
- name: Run eslint | ||
run: yarn lint |
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,6 +1,6 @@ | ||
[package] | ||
name = "acvm-simulator" | ||
version = "0.0.0" | ||
version = "0.0.0" # x-release-please-version | ||
authors = ["The Noir Team <[email protected]>"] | ||
edition = "2021" | ||
rust-version = "1.66" | ||
|
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 |
---|---|---|
@@ -1,8 +1,8 @@ | ||
{ | ||
"name": "nargo-wasm", | ||
"version": "0.1.0", | ||
"name": "acvm-simulator", | ||
"version": "0.0.0", | ||
"main": "index.js", | ||
"repository": "[email protected]:TomAFrench/nargo-wasm.git", | ||
"repository": "[email protected]:noir-lang/acvm-simulator.git", | ||
"collaborators": [ | ||
"The Noir Team <[email protected]>" | ||
], | ||
|
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
Oops, something went wrong.