mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
15 lines
310 B
Bash
Executable File
15 lines
310 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -eo pipefail
|
|
|
|
# TODO: Benchmarks run WAY too slow due to excessive amount of iterations.
|
|
|
|
cmd=(cargo codspeed build --profile profiling)
|
|
crates=(
|
|
-p reth-primitives
|
|
-p reth-trie
|
|
-p reth-trie-common
|
|
-p reth-trie-sparse
|
|
)
|
|
|
|
"${cmd[@]}" --features test-utils "${crates[@]}"
|