feat: multiplicity depend on payload size (#670) #1641
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 | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
schedule: | |
- cron: "0 0 * * 1" | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cancel Outdated Builds | |
uses: styfle/[email protected] | |
with: | |
all_but_latest: true | |
access_token: ${{ github.token }} | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Install stable toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: default | |
toolchain: stable | |
override: true | |
default: true | |
components: rustfmt, clippy | |
target: | | |
wasm32-unknown-unknown | |
- name: Install nightly toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: nightly | |
override: false | |
default: false | |
components: rustfmt | |
- uses: Swatinem/rust-cache@v2 | |
name: Enable Rust Caching | |
- name: Spell Check | |
uses: crate-ci/[email protected] | |
- name: Format Check | |
run: cargo +nightly fmt -- --check | |
- name: Clippy | |
uses: actions-rs/clippy-check@v1 | |
with: | |
token: ${{ github.token }} | |
- name: Audit | |
uses: actions-rs/audit-check@v1 | |
with: | |
token: ${{ github.token }} | |
- name: Check Bench | |
run: cargo bench --features "test-srs bls schnorr gadgets" --no-run | |
- name: Check all tests and binaries compilation | |
run: | | |
cargo check --workspace --tests --lib --bins | |
cargo check --workspace --features 'std parallel test-srs test-apis bls schnorr gadgets' | |
- name: Check no_std support and WASM compilation | |
env: | |
RUSTFLAGS: '-C target-cpu=generic --cfg curve25519_dalek_backend="u32"' | |
run: | | |
cargo check --no-default-features --features "bls schnorr gadgets" | |
cargo build --target wasm32-unknown-unknown --no-default-features --features "bls schnorr gadgets" | |
- name: Test | |
run: bash ./scripts/run_tests.sh | |
- name: Example | |
run: cargo run --release --example proof-of-exp --features test-srs | |
- name: Generate Documentation | |
run: | | |
cargo doc --no-deps --lib --release | |
cp -R target/doc public | |
echo '<meta http-equiv="refresh" content="0; url=jf_plonk">' > public/index.html | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v4 | |
if: ${{ github.ref == 'refs/heads/main' }} | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./public | |
cname: jellyfish.docs.espressosys.com |