Skip to content

Commit

Permalink
ci: add eth tests to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
fkrause98 committed Oct 31, 2024
1 parent b4c450b commit b52fde2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/hive.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ jobs:
- simulation: snap
name: "Devp2p snap tests"
run_command: make run-hive SIMULATION=devp2p TEST_PATTERN="/AccountRange"
- simulation: eth
name: "Devp2p eth tests"
run_command: make run-hive SIMULATION=devp2p TEST_PATTERN="eth/getblockheaders"
- simulation: engine
name: "Engine tests"
run_command: make run-hive SIMULATION=ethereum/engine TEST_PATTERN="/Blob Transactions On Block 1, Cancun Genesis|Blob Transactions On Block 1, Shanghai Genesis|Blob Transaction Ordering, Single Account, Single Blob|Blob Transaction Ordering, Single Account, Dual Blob|Blob Transaction Ordering, Multiple Accounts|Replace Blob Transactions|Parallel Blob Transactions|ForkchoiceUpdatedV3 Modifies Payload ID on Different Beacon Root|NewPayloadV3 After Cancun|NewPayloadV3 Versioned Hashes|ForkchoiceUpdated Version on Payload Request"
Expand Down
1 change: 1 addition & 0 deletions crates/networking/p2p/rlpx/connection.rs
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,7 @@ impl<S: AsyncWrite + AsyncRead + std::marker::Unpin> RLPxConnection<S> {
let response =
process_account_range_request(req, self.storage.clone())?;
self.send(Message::AccountRange(response)).await
}
Message::GetBlockHeaders(msg_data) => {
let response = BlockHeaders {
id: msg_data.id,
Expand Down

0 comments on commit b52fde2

Please sign in to comment.