Skip to content

Implement BitCell v0.3: Production-ready CA tournament blockchain with full R1CS ZK circuits, P2P networking architecture, RocksDB storage, proper cryptography (ECVRF, CLSAG), ZKVM, economics, monitoring, and comprehensive testing (92-95% complete) #28

Implement BitCell v0.3: Production-ready CA tournament blockchain with full R1CS ZK circuits, P2P networking architecture, RocksDB storage, proper cryptography (ECVRF, CLSAG), ZKVM, economics, monitoring, and comprehensive testing (92-95% complete)

Implement BitCell v0.3: Production-ready CA tournament blockchain with full R1CS ZK circuits, P2P networking architecture, RocksDB storage, proper cryptography (ECVRF, CLSAG), ZKVM, economics, monitoring, and comprehensive testing (92-95% complete) #28

Workflow file for this run

name: Benchmarks
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main ]
jobs:
benchmark:
name: Run Benchmarks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: Install criterion
run: cargo install cargo-criterion
- name: Run benchmarks
run: cargo bench --all
- name: Store benchmark result
uses: benchmark-action/github-action-benchmark@v1
with:
name: Rust Benchmark
tool: 'cargo'
output-file-path: target/criterion/report/index.html
github-token: ${{ secrets.GITHUB_TOKEN }}
auto-push: true