Skip to content

Commit

Permalink
fix: show smart contract deployment log
Browse files Browse the repository at this point in the history
  • Loading branch information
atanmarko committed Jun 21, 2024
1 parent f2608d2 commit e75122c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/jerigon.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
name: Test proof generation with jerigon input
runs-on: zero-ci
timeout-minutes: 40
# if: "! contains(toJSON(github.event.commits.*.message), '[skip-ci]')"
if: "! contains(toJSON(github.event.commits.*.message), '[skip-ci]')"
steps:
- name: Checkout sources
uses: actions/checkout@v4
Expand Down Expand Up @@ -53,7 +53,7 @@ jobs:
run: |
cd test-jerigon-network
docker-compose -f docker-compose.yml up -d
docker container wait smart-contracts
docker logs -f smart-contracts
echo "Jerigon network is up and running, ready for testing"
- name: Rpc test with curl
Expand All @@ -66,15 +66,15 @@ jobs:
run: |
cd zero_bin/tools
OUTPUT_TO_TERMINAL=true ./prove_rpc.sh 0x2 0x3 http://localhost:8546 jerigon true 0 0 test_only
echo "Proving blocks in test_only mode done"
echo "Proving blocks in test_only mode finished"
- name: Run prove blocks in real mode
run: |
cd zero_bin/tools
rm -rf proofs/* circuits/* ./proofs.json test.out verify.out leader.out
OUTPUT_TO_TERMINAL=true RUN_VERIFICATION=true ./prove_rpc.sh 0x4 0x5 http://localhost:8546 jerigon true
echo "Proving blocks in real mode done"
echo "Proving blocks in real mode finished"
- name: Shut down network
run: |
Expand Down

0 comments on commit e75122c

Please sign in to comment.