Merging Oles changes that add compression and snark generation (#7) #19
This file contains hidden or 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: "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 |