generated from proofoftom/buidler-waffle-typechain-quasar
-
Notifications
You must be signed in to change notification settings - Fork 91
59 lines (55 loc) · 1.51 KB
/
test-e2e.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
name: End to end tests
on:
workflow_dispatch:
push:
branches:
- 'develop'
env:
NODE_VERSION: 16.x
CIRCUIT_TYPE: prod
jobs:
e2e-test:
runs-on: ubuntu-22.04
steps:
- name: Checkout MACI
uses: actions/checkout@v3
with:
repository: privacy-scaling-explorations/maci
ref: v0.10.1
path: maci
- name: Use Node.js ${{ env.NODE_VERSION }}
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
- name: Install g++ library dependencies
run: |
sudo apt update
sudo apt-get install build-essential libgmp-dev libsodium-dev nlohmann-json3-dev nasm g++ curl
- name: Install rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Install zkutil
run: |
cargo install zkutil --version 0.3.2
- name: Checkout Clrfund
uses: actions/checkout@v3
with:
path: monorepo
- name: Download batch 64 zk circuit params
run: |
$GITHUB_WORKSPACE/monorepo/.github/scripts/download-batch64-params.sh
- name: Build Clrfund
run: |
cd monorepo
yarn && yarn build
- name: Start hardhat network
run: |
cd monorepo
yarn start:node &
- name: Run tests
run: |
export NODE_CONFIG=$(node -e "const snarkParamsPath=process.env.GITHUB_WORKSPACE + '/params'; console.log(JSON.stringify({ snarkParamsPath }));")
echo $NODE_CONFIG
cd monorepo
yarn test:e2e