feat(shader): add BN254 basefield modulus constant generation #82
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and Test | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- "**/*.md" | |
pull_request: | |
branches: | |
- main | |
types: | |
- opened | |
- reopened | |
- synchronize | |
- ready_for_review | |
paths-ignore: | |
- "**/*.md" | |
env: | |
CARGO_TERM_COLOR: always | |
SCCACHE_GHA_ENABLED: "false" | |
RUSTC_WRAPPER: "sccache" | |
jobs: | |
# TODO: Add a job to run clippy | |
lint: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Check formatting | |
run: cargo fmt --all -- --check | |
# TODO: Temporarily disable GPU benchmarks since it's under refactoring | |
# gpu-benchmarks: | |
# runs-on: macos-latest | |
# steps: | |
# - uses: actions/checkout@v4 | |
# - name: Install Rust toolchain | |
# uses: actions-rs/toolchain@v1 | |
# with: | |
# toolchain: "1.77" | |
# override: true | |
# - name: Run sccache-cache | |
# uses: mozilla-actions/[email protected] | |
# - name: Run GPU Benchmarks tests | |
# run: | | |
# cd mopro-msm | |
# cargo test --release test_msm_correctness -- --nocapture |