Skip to content

Commit

Permalink
chore: Fix CI errors (#58)
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelburnham authored Feb 20, 2024
1 parent a9a4225 commit df53e2b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/end2end.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:

- name: Set env from comment body
run: |
printf '${{ github.event.comment.body }}' > comment.txt
BODY=$(printf '${{ github.event.comment.body }}')
NOVA_URL=$(echo $BODY | awk -F'[ =]' '{for (i=1; i<=NF; i++) {if ($i ~ /^NOVA_URL/) {print $(i+1) }}}')
if [[ ! -z $NOVA_URL ]]; then
echo "NOVA_URL=$NOVA_URL" | tee -a $GITHUB_ENV
Expand All @@ -87,7 +87,7 @@ jobs:

- name: Load proof and public parameters
run: |
python loader.py pp-verifier-key.json pp-compressed-snark.json ${{steps.deployment.outputs.CONTRACT_ADDRESS}} $ANVIL_URL $ANVIL_PRIVATE_KEY
python loader.py vk.json compressed-snark.json ${{steps.deployment.outputs.CONTRACT_ADDRESS}} $ANVIL_URL $ANVIL_PRIVATE_KEY
- name: Check proof verification status
run: |
Expand Down

0 comments on commit df53e2b

Please sign in to comment.