Skip to content

June polygon pull #59

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Jun 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 15 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ jobs:
- name: Run cargo clippy
run: cargo clippy --all-targets -- -D warnings

simple_proof:
name: Execute bash script to generate and verify a proof from a small block
simple_proof_regular:
name: Execute bash script to generate and verify a proof for a small block.
runs-on: zero-ci

steps:
Expand All @@ -77,3 +77,16 @@ jobs:
run: |
pushd tools
./simple_test.sh

simple_proof_witness_only:
name: Execute bash script to generate the proof witness for a small block.
runs-on: zero-ci

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Run the script
run: |
pushd tools
./simple_test.sh test_only
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,6 @@ verifier_state_*
# Coordinator output
coordinator/benchmark_out/
coordinator/proof_out/

# Ignore IntelliJ IDEA/RustRover/Clion metadata
.idea/
Loading
Loading