Add new PolyOps trait for evaluating many polynomials (columns) in the commitment extension #7446
Workflow file for this run
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: CI | |
on: | |
push: | |
branches: | |
- dev | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
- auto_merge_enabled | |
- edited | |
merge_group: | |
types: | |
- checks_requested | |
jobs: | |
format: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
components: rustfmt | |
toolchain: nightly-2024-01-04 | |
- uses: Swatinem/rust-cache@v2 | |
- run: scripts/rust_fmt.sh --check | |
clippy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
components: clippy | |
toolchain: nightly-2024-01-04 | |
- uses: Swatinem/rust-cache@v2 | |
- run: scripts/clippy.sh | |
doc: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: nightly-2024-01-04 | |
- uses: Swatinem/rust-cache@v2 | |
- run: cargo +nightly-2024-01-04 doc | |
run-wasm32-wasi-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: nightly-2024-01-04 | |
targets: wasm32-wasi | |
- uses: taiki-e/install-action@v2 | |
with: | |
tool: wasmtime | |
- uses: Swatinem/rust-cache@v2 | |
- run: cargo test --target wasm32-wasi | |
env: | |
CARGO_TARGET_WASM32_WASI_RUNNER: "wasmtime run --" | |
RUSTFLAGS: -C target-feature=+simd128 | |
run-wasm32-unknown-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: nightly-2024-01-04 | |
targets: wasm32-unknown-unknown | |
- uses: Swatinem/rust-cache@v2 | |
- uses: jetli/[email protected] | |
with: | |
version: "latest" | |
- run: cd crates/prover && wasm-pack test --node | |
env: | |
RUSTFLAGS: -C target-feature=+simd128 | |
run-neon-tests: | |
runs-on: macos-latest-xlarge | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: nightly-2024-01-04 | |
- uses: Swatinem/rust-cache@v2 | |
- run: cargo +nightly-2024-01-04 test | |
env: | |
RUSTFLAGS: -C target-feature=+neon | |
run-avx-tests: | |
strategy: | |
matrix: | |
target-feature: [avx512f, avx2] | |
runs-on: avx | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: nightly-2024-01-04 | |
- uses: Swatinem/rust-cache@v2 | |
- run: cargo +nightly-2024-01-04 test | |
env: | |
RUSTFLAGS: -C target-cpu=native -C target-feature=+${{ matrix.target-feature }} | |
run-avx512-bench: | |
runs-on: avx | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: nightly-2024-01-04 | |
- name: Run benchmark | |
run: ./scripts/bench.sh -- --output-format bencher | tee output.txt | |
- name: Download previous benchmark data | |
uses: actions/cache@v4 | |
with: | |
path: ./cache | |
key: ${{ runner.os }}-benchmark | |
- name: Store benchmark result | |
uses: benchmark-action/github-action-benchmark@v1 | |
with: | |
tool: "cargo" | |
output-file-path: output.txt | |
external-data-json-path: ./cache/benchmark-data.json | |
fail-on-alert: true | |
summary-always: true | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
comment-on-alert: true | |
alert-comment-cc-users: "@spapinistarkware" | |
run-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: nightly-2024-01-04 | |
- uses: Swatinem/rust-cache@v2 | |
- run: cargo +nightly-2024-01-04 test | |
run-slow-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: nightly-2024-01-04 | |
- uses: Swatinem/rust-cache@v2 | |
- run: cargo +nightly-2024-01-04 test --release --features="slow-tests" | |
machete: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run Machete (detect unused dependencies) | |
uses: bnjbvr/cargo-machete@main | |
all-tests: | |
runs-on: ubuntu-latest | |
needs: | |
- clippy | |
- format | |
- run-tests | |
- run-avx-tests | |
- run-neon-tests | |
- run-wasm32-wasi-tests | |
- run-slow-tests | |
- machete | |
steps: | |
- name: Decide whether all the needed jobs succeeded or failed | |
uses: re-actors/[email protected] | |
with: | |
jobs: ${{ toJSON(needs) }} |