Skip to content

Commit

Permalink
Add golang e2e step
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 a1fa08d commit efc2d8b
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
workflow_dispatch:

jobs:
circuit-build:
circuit-build-test:
runs-on: ubuntu-latest
steps:
- name: Set up Rust
Expand Down Expand Up @@ -51,8 +51,15 @@ jobs:
env:
PROVING_KEYS_ROOT: ${{ runner.temp }}/zeto-artifacts
PTAU_DOWNLOAD_PATH: ${{ runner.temp }}/zeto-artifacts
CIRCUITS_ROOT: ${{ runner.temp }}/zeto-artifacts
working-directory: zkp/circuits
run: |
cd zkp/circuits
npm install
npm run gen
- name: Run golang e2e tests
env:
PROVING_KEYS_ROOT: ${{ runner.temp }}/zeto-artifacts
CIRCUITS_ROOT: ${{ runner.temp }}/zeto-artifacts
working-directory: zkp/golang
run: |
make e2e

0 comments on commit efc2d8b

Please sign in to comment.