Skip to content

Merging Oles changes that add compression and snark generation (#7) #19

Merging Oles changes that add compression and snark generation (#7)

Merging Oles changes that add compression and snark generation (#7) #19

Workflow file for this run

name: "Rust CI"
on:
push:
branches:
- main
pull_request:
jobs:
tests:
name: tests
runs-on: [matterlabs-ci-runner-c3d]
steps:
- uses: actions/checkout@v3
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
rustflags: ""
- name: Setup
run: |
rustup set profile minimal
git config --global --add url."https://${{ secrets.ZKSYNC_ADMIN_BOT_ORG_REPO_WRITE }}:[email protected]/".insteadOf https://github.com/
- name: Compile
run: cargo build --verbose
- name: tests
# We need to increase the stack size for the tests (due to quotient computation)
run: RUST_MIN_STACK=67108864 cargo test --release -- --nocapture --test-threads=1