refactor: forester: batch ops #4430
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
on: | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- ".cargo/**" | ||
- "**/*.rs" | ||
- "**/Cargo.*" | ||
- "prover/server/**" | ||
- ".github/workflows/rust.yml" | ||
pull_request: | ||
branches: | ||
- "*" | ||
paths: | ||
- "**/*.rs" | ||
- "**/Cargo.*" | ||
- "prover/server/**" | ||
- ".github/workflows/rust.yml" | ||
types: | ||
- opened | ||
- synchronize | ||
- reopened | ||
- ready_for_review | ||
name: rust | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
jobs: | ||
test: | ||
if: github.event.pull_request.draft == false | ||
runs-on: ubuntu-latest | ||
container: | ||
options: --memory=4g | ||
steps: | ||
- name: Checkout sources | ||
uses: actions/checkout@v4 | ||
- name: Setup and build | ||
uses: ./.github/actions/setup-and-build | ||
- name: Build CLI | ||
run: | | ||
source ./scripts/devenv.sh | ||
npx nx build @lightprotocol/zk-compression-cli | ||
# concurrent merkle tree crate must run in isolation because otherwise it | ||
# tries to use the idl-build feature (which fails). | ||
- name: Test client | ||
run: | | ||
source ./scripts/devenv.sh | ||
echo "Rust version: $(rustc --version)" | ||
RUST_MIN_STACK=8388608 RUSTFLAGS="-D warnings" \ | ||
cargo test --all-targets --package light-client | ||
- name: Test workspace (excluding light-concurrent-merkle-tree) | ||
run: | | ||
source ./scripts/devenv.sh | ||
echo "Rust version: $(rustc --version)" | ||
RUST_MIN_STACK=8388608 RUSTFLAGS="-D warnings" \ | ||
cargo test --all-targets --workspace \ | ||
--exclude light-client \ | ||
--exclude light-concurrent-merkle-tree \ | ||
--exclude photon-api \ | ||
--exclude forester \ | ||
--exclude name-service \ | ||
--exclude mixed-accounts | ||
- name: Test light-concurrent-merkle-tree | ||
run: | | ||
source ./scripts/devenv.sh | ||
echo "Rust version: $(rustc --version)" | ||
RUST_MIN_STACK=8388608 RUSTFLAGS="-D warnings" cargo test --all-targets --package light-concurrent-merkle-tree | ||
- name: Memory status | ||
run: free -h |