Skip to content

perf: Implement segmented heap #308

perf: Implement segmented heap

perf: Implement segmented heap #308

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
merge_group:
env:
CARGO_TERM_COLOR: always
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
build_and_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Rust Cache
uses: Swatinem/rust-cache@v2
- name: Build project
run: |
cargo build
# Two runs are needed. One for normal VM, another for the mocked version
- name: Run clippy
run: |
# Check the main library with non-test features (needs to be tested in isolation since the fuzzing crate enables test features)
cargo clippy -p vm2 --all-targets -- -D warnings
# The benches in `vm2` don't compile with fuzzing enabled
cargo clippy --workspace --all-features --lib --bins --tests -- -D warnings
- name: Check formatting
run: |
cargo fmt --check
- name: Run Tests
run: |
cargo test -p vm2 --all-targets