Skip to content

Commit

Permalink
feat: Add support for remaining black box opcodes using barretenberg (
Browse files Browse the repository at this point in the history
#26)

Co-authored-by: jonybur <jobur93@gmail.com>
Co-authored-by: TomAFrench <tom@tomfren.ch>
  • Loading branch information
3 people authored Jun 8, 2023
1 parent aeeb7d4 commit 869cef9
Show file tree
Hide file tree
Showing 33 changed files with 2,795 additions and 2,312 deletions.
5 changes: 5 additions & 0 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[build]
target = "wasm32-unknown-unknown"

[target.wasm32-unknown-unknown]
runner = 'wasm-bindgen-test-runner'
14 changes: 14 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,17 @@ jobs:
git add Cargo.lock
git commit -m 'chore: Update lockfile'
git push
dispatch-acvm-simulator-wasm:
name: Dispatch to acvm-simulator-wasm
needs: [release-please]
if: ${{ needs.release-please.outputs.tag-name }}
runs-on: ubuntu-latest
steps:
- name: Dispatch to acvm-simulator-wasm
uses: benc-uk/workflow-dispatch@v1
with:
workflow: update.yml
repo: noir-lang/acvm-simulator-wasm
token: ${{ secrets.ACVM_SIMULATOR_RELEASES_TOKEN }}
inputs: '{ "acvm-simulator-ref": "${{ needs.release-please.outputs.tag-name }}" }'
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
uses: ./.github/actions/setup

- name: Install playwright deps
run: npx playwright install --with-deps chromium
run: npx playwright install --with-deps webkit

- name: Run browser tests
run: yarn test:browser
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ node_modules
pkg/
lib/
result
.direnv

# Yarn
.pnp.*
Expand Down
5 changes: 5 additions & 0 deletions .mocharc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"extension": ["ts"],
"spec": "test/node/**/*.test.ts",
"require": "ts-node/register"
}
Loading

0 comments on commit 869cef9

Please sign in to comment.