Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,9 @@ jobs:
- name: cargo test (default)
run: cargo test && cargo test --release

- name: cargo test (allocator-debug)
run: cargo test --features allocator-debug && cargo test --features allocator-debug --release

- name: cargo test (counters)
run: cargo test --features=counters && cargo test --features=counters --release

Expand Down
4 changes: 4 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@ counters = []
# debugging and tracing of programs.
pre-eval = []

# when enabled, NodePtr will contain additional metadata to assert that they are
# used correctly
allocator-debug = []

# On UNIX-based platforms, you may get a speed boost on `sha256` operations by building
# with OpenSSL when enabled
openssl = ["chia-sha2/openssl"]
Expand Down
Loading