forked from paradigmxyz/reth
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'isthmus-devnet-0' into emhane/storage-root-isthmus
- Loading branch information
Showing
84 changed files
with
968 additions
and
725 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
#!/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) | ||
excludes=( | ||
# Unnecessary | ||
--exclude reth-libmdbx | ||
# Build is too slow | ||
--exclude reth-network | ||
# Built separately | ||
--exclude reth-transaction-pool | ||
# TODO: some benchmarks panic: https://github.com/paradigmxyz/reth/actions/runs/12307046814/job/34349955788 | ||
--exclude reth-db | ||
--exclude reth-trie-parallel | ||
--exclude reth-engine-tree | ||
) | ||
|
||
"${cmd[@]}" --features test-utils --workspace "${excludes[@]}" | ||
|
||
# TODO: Slow benchmarks due to too many iterations | ||
## "${cmd[@]}" -p reth-transaction-pool --features test-utils,arbitrary |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.