Merge pull request #542 from 0xPolygonHermez/rick/fix_kv_database #276
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
name: Prover e2e test | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ "main","develop" ] | |
pull_request: | |
branches: [ "main","develop" ] | |
jobs: | |
build: | |
runs-on: [self-hosted, linux, X64, hc, hm] | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: 'true' | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '16' | |
- name: Install snarkjs | |
run: npm -g install snarkjs | |
- name: make | |
run: make -j | |
- name: remove all config | |
run: rm -rf config | |
- name: remove old proofs | |
run: rm -rf runtime/output/* | |
- name: link files | |
run: ln -s /home/ubuntu/v2.0.0-RC4-fork.5/config/ config | |
- name: run e2e tests | |
run: ./build/zkProver -c testvectors/config_runFile_e2e.json | |
- name: run snarkjs verification | |
run: snarkjs ffv config/final/final.fflonk.verkey.json $(ls -t runtime/output/*.gen_final_proof_public.json | head -n1) $(ls -t runtime/output/*.final_proof.proof.json | head -n1) |