Skip to content

Commit

Permalink
Add e2e test with circuit builds and proving keys generation
Browse files Browse the repository at this point in the history
Signed-off-by: Jim Zhang <[email protected]>
  • Loading branch information
jimthematrix committed Aug 6, 2024
1 parent fa77ea8 commit 3d224ff
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 1 deletion.
49 changes: 49 additions & 0 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: e2e

on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:

jobs:
circuit-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Set up Rust
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
profile: minimal
toolchain: stable

- name: Checkout circom repo
uses: actions/checkout@v4
with:
repository: 'iden3/circom'
ref: 'v2.1.9'

- name: Build circom
run: |
cd circom
cargo build --release
cargo install --path circom
- name: Setup node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'

- name: install snarkjs
run: |
npm install -g snarkjs
- name: Build circuits
run: |
cd zkp/circuits
npm run gen
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
workflow_dispatch:

jobs:
build:
golang-test:
env:
TEST_ARGS: -v
runs-on: ubuntu-latest
Expand Down

0 comments on commit 3d224ff

Please sign in to comment.