-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #30 from hyperledger-labs/gh-actions
github actions for circuit builds and e2e tests
- Loading branch information
Showing
81 changed files
with
1,908 additions
and
92,193 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,40 @@ | ||
name: Circuit Unit Tests | ||
|
||
on: | ||
push: | ||
branches: [main] | ||
pull_request: | ||
branches: [main] | ||
workflow_dispatch: | ||
|
||
jobs: | ||
circuit-unit-tests: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Setup node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
|
||
- name: Install circom | ||
uses: supplypike/setup-bin@v4 | ||
with: | ||
uri: https://github.com/iden3/circom/releases/download/v2.1.9/circom-linux-amd64 | ||
name: circom | ||
version: 2.1.9 | ||
|
||
- name: Checkout circuits | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Install circuit dependencies | ||
working-directory: zkp/circuits | ||
run: | | ||
npm install | ||
- name: Run circuit unit tests | ||
working-directory: zkp/js | ||
run: | | ||
npm install | ||
npm t |
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,86 @@ | ||
name: e2e | ||
|
||
on: | ||
push: | ||
branches: [main] | ||
pull_request: | ||
branches: [main] | ||
workflow_dispatch: | ||
|
||
jobs: | ||
integration-test: | ||
runs-on: ubuntu-latest | ||
services: | ||
postgres: | ||
image: postgres | ||
env: | ||
POSTGRES_PASSWORD: my-secret | ||
POSTGRES_USER: postgres | ||
POSTGRES_DB: postgres | ||
options: >- | ||
--health-cmd pg_isready | ||
--health-interval 10s | ||
--health-timeout 5s | ||
--health-retries 5 | ||
ports: | ||
- 5432:5432 | ||
steps: | ||
- name: Install circom | ||
uses: supplypike/setup-bin@v4 | ||
with: | ||
uri: https://github.com/iden3/circom/releases/download/v2.1.9/circom-linux-amd64 | ||
name: circom | ||
version: 2.1.9 | ||
|
||
- name: Setup node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
|
||
- name: install snarkjs | ||
run: | | ||
npm install -g snarkjs | ||
- name: Checkout circuits | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Setup temp dir for the artifacts | ||
run: | | ||
mkdir -p ${{ runner.temp }}/zeto-artifacts | ||
- name: Build circuits | ||
env: | ||
PROVING_KEYS_ROOT: ${{ runner.temp }}/zeto-artifacts | ||
PTAU_DOWNLOAD_PATH: ${{ runner.temp }}/zeto-artifacts | ||
working-directory: zkp/circuits | ||
run: | | ||
npm install | ||
npm run gen | ||
- name: Run golang e2e tests | ||
env: | ||
PROVING_KEYS_ROOT: ${{ runner.temp }}/zeto-artifacts | ||
CIRCUITS_ROOT: ${{ github.workspace }}/zkp/js/lib | ||
working-directory: zkp/golang | ||
run: | | ||
make e2e | ||
- name: Run js e2e tests | ||
env: | ||
PROVING_KEYS_ROOT: ${{ runner.temp }}/zeto-artifacts | ||
CIRCUITS_ROOT: ${{ github.workspace }}/zkp/js/lib | ||
working-directory: zkp/js | ||
run: | | ||
npm install | ||
npm run test:e2e | ||
- name: Run Zeto Tokens hardhat tests | ||
env: | ||
PROVING_KEYS_ROOT: ${{ runner.temp }}/zeto-artifacts | ||
CIRCUITS_ROOT: ${{ github.workspace }}/zkp/js/lib | ||
working-directory: solidity | ||
run: | | ||
npm install | ||
npm t |
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 |
---|---|---|
|
@@ -8,7 +8,7 @@ on: | |
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
golang-test: | ||
env: | ||
TEST_ARGS: -v | ||
runs-on: ubuntu-latest | ||
|
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
Oops, something went wrong.