Skip to content

Commit

Permalink
chore: fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanpwang committed Jul 10, 2023
1 parent dd63591 commit e91a83b
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,21 @@ jobs:
working-directory: "halo2-base"
run: |
cargo test -- --test-threads=1
- name: Run halo2-ecc tests
- name: Run halo2-ecc tests MockProver
working-directory: "halo2-ecc"
run: |
cargo test -- --nocapture
cargo test -- --nocapture test
- name: Run halo2-ecc tests (real prover)
working-directory: "halo2-ecc"
run: |
cargo test --release -- --nocapture bench_secp256k1_ecdsa
cargo test --release -- --nocapture bench_ec_add
mv configs/bn254/bench_fixed_msm.t.config configs/bn254/bench_fixed_msm.config
cargo test --release -- --nocapture bench_fixed_base_msm
mv configs/bn254/bench_msm.t.config configs/bn254/bench_msm.config
cargo test --release -- --nocapture bench_msm
mv configs/bn254/bench_pairing.t.config configs/bn254/bench_pairing.config
cargo test --release -- --nocapture bench_pairing
- name: Run zkevm-keccak tests
working-directory: "hashes/zkevm-keccak"
run: |
Expand Down

0 comments on commit e91a83b

Please sign in to comment.