e8fba8d3a7
## Issue Addressed Addresses the recent CI failures caused by caching `blst` for the wrong CPU type. ## Proposed Changes - Use `FEATURES: jemalloc,portable` when building Lighthouse & `lcli` in tests - Add a new `TEST_FEATURES` and set to `portable` for all CI test jobs. - Updated Makefiles to read the `TEST_FEATURES` environment variable, and default to none.
27 lines
766 B
TOML
27 lines
766 B
TOML
[package]
|
|
name = "execution_engine_integration"
|
|
version = "0.1.0"
|
|
edition = { workspace = true }
|
|
|
|
[dependencies]
|
|
tempfile = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
task_executor = { workspace = true }
|
|
tokio = { workspace = true }
|
|
futures = { workspace = true }
|
|
exit-future = { workspace = true }
|
|
environment = { workspace = true }
|
|
execution_layer = { workspace = true }
|
|
sensitive_url = { workspace = true }
|
|
types = { workspace = true }
|
|
unused_port = { workspace = true }
|
|
ethers-core = { workspace = true }
|
|
ethers-providers = { workspace = true }
|
|
deposit_contract = { workspace = true }
|
|
reqwest = { workspace = true }
|
|
hex = { workspace = true }
|
|
fork_choice = { workspace = true }
|
|
logging = { workspace = true }
|
|
|
|
[features]
|
|
portable = ["types/portable"] |