Skip to content

Use halo2curves v0.4.0 and ff v0.13 #140

Use halo2curves v0.4.0 and ff v0.13

Use halo2curves v0.4.0 and ff v0.13 #140

Workflow file for this run

name: Tests
on:
push:
branches: ["main", "develop", "community-edition"]
pull_request:
branches: ["main", "develop", "community-edition"]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest-m
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Run halo2-base tests
working-directory: "halo2-base"
run: |
cargo test
- name: Run halo2-ecc tests (mock prover)
working-directory: "halo2-ecc"
run: |
cargo test --lib -- --skip bench --test-threads=2
- name: Run halo2-ecc tests (real prover)
working-directory: "halo2-ecc"
run: |
mv configs/bn254/bench_fixed_msm.t.config configs/bn254/bench_fixed_msm.config
mv configs/bn254/bench_msm.t.config configs/bn254/bench_msm.config
mv configs/bn254/bench_pairing.t.config configs/bn254/bench_pairing.config
cargo test --release -- --nocapture bench_secp256k1_ecdsa
cargo test --release -- --nocapture bench_ec_add
cargo test --release -- --nocapture bench_fixed_base_msm
cargo test --release -- --nocapture bench_msm
cargo test --release -- --nocapture bench_pairing
- name: Run zkevm-keccak tests
working-directory: "hashes/zkevm-keccak"
run: |
cargo test
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
override: false
components: rustfmt, clippy
- uses: Swatinem/rust-cache@v1
with:
cache-on-failure: true
- name: Run fmt
run: cargo fmt --all -- --check
- name: Run clippy
run: cargo clippy --all -- -D warnings