Pod1introducer 1level recursion verifier in the RecursionCircuit & PlonkyPOD #37
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: Test | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: archlinux | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
yes | pacman -Syu | |
yes | pacman -S gcc clang cmake alsa-lib fontconfig wayland libgit2 libxkbcommon-x11 openssl zstd pkgconf mold sqlite jq git | |
- name: Install Rust toolchain | |
run: | | |
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y | |
. "$HOME/.cargo/env" | |
rustup toolchain install nightly-2024-09-28 | |
rustup default nightly-2024-09-28 | |
- name: Run tests | |
run: | | |
. "$HOME/.cargo/env" | |
cargo test --release -- --skip test_scalar_mul |