Skip to content

refactor: forester: batch ops #4430

refactor: forester: batch ops

refactor: forester: batch ops #4430

Workflow file for this run

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

Check failure on line 37 in .github/workflows/rust.yml

View workflow run for this annotation

GitHub Actions / rust

Invalid workflow file

The workflow is not valid. .github/workflows/rust.yml (Line: 37, Col: 7): Container image cannot be empty
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