Skip to content

Commit de3f6eb

Browse files
committed
Merge branch 'main' into new-approach3
2 parents b3863e4 + 5e07324 commit de3f6eb

File tree

297 files changed

+13205
-4014
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

297 files changed

+13205
-4014
lines changed

.config/nextest.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,7 @@ slow-timeout = { period = "2m", terminate-after = 10 }
1515
[[profile.default.overrides]]
1616
filter = "binary(e2e_testsuite)"
1717
slow-timeout = { period = "2m", terminate-after = 3 }
18+
19+
[[profile.default.overrides]]
20+
filter = "package(reth-era) and binary(it)"
21+
slow-timeout = { period = "2m", terminate-after = 10 }

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,6 @@ crates/tasks/ @mattsse
4040
crates/tokio-util/ @fgimenez
4141
crates/transaction-pool/ @mattsse @yongkangc
4242
crates/trie/ @Rjected @shekhirin @mediocregopher
43+
bin/reth-bench-compare/ @mediocregopher @shekhirin @yongkangc
4344
etc/ @Rjected @shekhirin
4445
.github/ @gakonst @DaniPopes

.github/workflows/integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,4 +78,4 @@ jobs:
7878
with:
7979
cache-on-failure: true
8080
- name: run era1 files integration tests
81-
run: cargo nextest run --package reth-era --test it -- --ignored
81+
run: cargo nextest run --release --package reth-era --test it -- --ignored

.github/workflows/lint.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,12 @@ jobs:
9292
run: .github/assets/check_rv32imac.sh
9393

9494
crate-checks:
95+
name: crate-checks (${{ matrix.partition }}/${{ matrix.total_partitions }})
9596
runs-on: ubuntu-latest
97+
strategy:
98+
matrix:
99+
partition: [1, 2]
100+
total_partitions: [2]
96101
timeout-minutes: 30
97102
steps:
98103
- uses: actions/checkout@v5
@@ -102,7 +107,7 @@ jobs:
102107
- uses: Swatinem/rust-cache@v2
103108
with:
104109
cache-on-failure: true
105-
- run: cargo hack check --workspace
110+
- run: cargo hack check --workspace --partition ${{ matrix.partition }}/${{ matrix.total_partitions }}
106111

107112
msrv:
108113
name: MSRV

0 commit comments

Comments
 (0)