Skip to content

Commit

Permalink
fix: kzg param fetching for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
rpalakkal committed Feb 13, 2024
1 parent 4b155f6 commit e083768
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,13 @@ jobs:
- name: Build rust client
run: |
cargo build --verbose
- name: Install KZG params
run: |
for k in {5..21}
do
wget "https://axiom-crypto.s3.amazonaws.com/challenge_0078/kzg_bn254_${k}.srs"
done
mv *.srs params/
- name: Test rust client
run: |
export PROVIDER_URI=${{ secrets.PROVIDER_URI_SEPOLIA }}
Expand Down

0 comments on commit e083768

Please sign in to comment.