Skip to content

Commit

Permalink
Fix problem in CI tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jtraglia committed Sep 12, 2023
1 parent b769c03 commit b4bdc6d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/trusted-setup-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ jobs:
- name: Download minimal preset
run: wget https://github.com/ethereum/consensus-specs/raw/dev/presets/minimal/trusted_setups/testing_trusted_setups.json
- name: Convert minimal to txt
run: python3 ./scripts/convert_trusted_setup.py --input testing_trusted_setup.json --output trusted_setup_minimal.txt
run: python3 ./scripts/convert_trusted_setup.py --json testing_trusted_setup.json --text trusted_setup_minimal.txt
- name: Compare to existing file
run: cmp src/trusted_setup_4.txt trusted_setup_minimal.txt

- name: Download mainnet preset
run: wget https://github.com/ethereum/consensus-specs/raw/dev/presets/mainnet/trusted_setups/testing_trusted_setups.json
- name: Convert mainnet to txt
run: python3 ./scripts/convert_trusted_setup.py --input testing_trusted_setup.json --output trusted_setup_mainnet.txt
run: python3 ./scripts/convert_trusted_setup.py --json testing_trusted_setup.json --text trusted_setup_mainnet.txt
- name: Compare to existing file
run: cmp src/trusted_setup.txt trusted_setup_mainnet.txt

0 comments on commit b4bdc6d

Please sign in to comment.