Skip to content

Commit a134b8e

Browse files
constwzVM
authored andcommitted
fix: blob ut (#80)
1 parent dd1af05 commit a134b8e

18 files changed

Lines changed: 65 additions & 58 deletions

File tree

.github/actionlint.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
self-hosted-runner:
2+
labels:
3+
- ubuntu-24.04-16core

.github/workflows/bench.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ name: bench
1717
jobs:
1818
codspeed:
1919
runs-on: ubuntu-latest
20-
# group: Reth
2120
steps:
2221
- uses: actions/checkout@v5
2322
with:
@@ -36,5 +35,6 @@ jobs:
3635
- name: Run the benchmarks
3736
uses: CodSpeedHQ/action@v4
3837
with:
38+
mode: simulation
3939
run: cargo codspeed run --workspace
4040
token: ${{ secrets.CODSPEED_TOKEN }}

.github/workflows/compact.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ name: compact-codec
1919
jobs:
2020
compact-codec:
2121
runs-on: ubuntu-latest
22-
# group: Reth
2322
strategy:
2423
matrix:
2524
bin:

.github/workflows/docker-nightly.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ jobs:
3030
command: 'make PROFILE=maxperf docker-build-push-nightly'
3131
- name: 'Build and push the nightly profiling reth image'
3232
command: 'make PROFILE=profiling docker-build-push-nightly-profiling'
33-
- name: 'Build and push the nightly op-reth image'
34-
command: 'make IMAGE_NAME=$OP_IMAGE_NAME DOCKER_IMAGE_NAME=$OP_DOCKER_IMAGE_NAME PROFILE=maxperf op-docker-build-push-nightly'
35-
- name: 'Build and push the nightly profiling op-reth image'
36-
command: 'make IMAGE_NAME=$OP_IMAGE_NAME DOCKER_IMAGE_NAME=$OP_DOCKER_IMAGE_NAME PROFILE=profiling op-docker-build-push-nightly-profiling'
33+
# - name: 'Build and push the nightly op-reth image'
34+
# command: 'make IMAGE_NAME=$OP_IMAGE_NAME DOCKER_IMAGE_NAME=$OP_DOCKER_IMAGE_NAME PROFILE=maxperf op-docker-build-push-nightly'
35+
# - name: 'Build and push the nightly profiling op-reth image'
36+
# command: 'make IMAGE_NAME=$OP_IMAGE_NAME DOCKER_IMAGE_NAME=$OP_DOCKER_IMAGE_NAME PROFILE=profiling op-docker-build-push-nightly-profiling'
3737
steps:
3838
- uses: actions/checkout@v5
3939
- name: Remove bloatware

.github/workflows/e2e.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,7 @@ concurrency:
2020
jobs:
2121
test:
2222
name: e2e-testsuite
23-
runs-on: ubuntu-latest
24-
# group: Reth
23+
runs-on: ubuntu-latest
2524
env:
2625
RUST_BACKTRACE: 1
2726
timeout-minutes: 90

.github/workflows/hive.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@ jobs:
2424
prepare-hive:
2525
if: github.repository == 'paradigmxyz/reth'
2626
timeout-minutes: 45
27-
runs-on: ubuntu-latest
28-
# group: Reth
27+
runs-on: ubuntu-latest
2928
steps:
3029
- uses: actions/checkout@v5
3130
- name: Checkout hive tests
@@ -147,7 +146,6 @@ jobs:
147146
- prepare-hive
148147
name: run ${{ matrix.scenario.sim }}${{ matrix.scenario.limit && format(' - {0}', matrix.scenario.limit) }}
149148
runs-on: ubuntu-latest
150-
# group: Reth
151149
permissions:
152150
issues: write
153151
steps:
@@ -215,7 +213,6 @@ jobs:
215213
needs: test
216214
if: failure()
217215
runs-on: ubuntu-latest
218-
# group: Reth
219216
steps:
220217
- name: Slack Webhook Action
221218
uses: rtCamp/action-slack-notify@v2

.github/workflows/integration.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ jobs:
2525
name: test / ${{ matrix.network }}
2626
if: github.event_name != 'schedule'
2727
runs-on: ubuntu-latest
28-
# group: Reth
2928
env:
3029
RUST_BACKTRACE: 1
3130
strategy:

.github/workflows/kurtosis-op.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ jobs:
3333
fail-fast: false
3434
name: run kurtosis
3535
runs-on: ubuntu-latest
36-
# group: Reth
3736
needs:
3837
- prepare-reth
3938
steps:
@@ -90,7 +89,6 @@ jobs:
9089
needs: test
9190
if: failure()
9291
runs-on: ubuntu-latest
93-
# group: Reth
9492
steps:
9593
- name: Slack Webhook Action
9694
uses: rtCamp/action-slack-notify@v2

.github/workflows/kurtosis.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
fail-fast: false
3232
name: run kurtosis
3333
runs-on: ubuntu-latest
34-
# group: Reth
34+
3535
needs:
3636
- prepare-reth
3737
steps:
@@ -60,7 +60,6 @@ jobs:
6060
needs: test
6161
if: failure()
6262
runs-on: ubuntu-latest
63-
# group: Reth
6463
steps:
6564
- name: Slack Webhook Action
6665
uses: rtCamp/action-slack-notify@v2

.github/workflows/lint.yml

Lines changed: 17 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
name: lint
22

33
on:
4-
workflow_dispatch: # disable action temporarily
54
pull_request:
65
merge_group:
76
push:
@@ -95,19 +94,9 @@ jobs:
9594
# run: .github/assets/check_rv32imac.sh
9695

9796
crate-checks:
98-
runs-on: ubuntu-latest
97+
runs-on: ubuntu-24.04-16core
9998
timeout-minutes: 120
10099
steps:
101-
- name: Free disk space
102-
uses: jlumbroso/free-disk-space@main
103-
with:
104-
tool-cache: false
105-
android: true
106-
dotnet: true
107-
haskell: true
108-
large-packages: true
109-
docker-images: true
110-
swap-storage: true
111100
- uses: actions/checkout@v5
112101
- uses: rui314/setup-mold@v1
113102
- uses: dtolnay/rust-toolchain@stable
@@ -270,20 +259,21 @@ jobs:
270259
RUSTFLAGS: -D warnings
271260

272261
# Check crates correctly propagate features
273-
feature-propagation:
274-
runs-on: ubuntu-latest
275-
timeout-minutes: 20
276-
steps:
277-
- uses: actions/checkout@v5
278-
- name: fetch deps
279-
run: |
280-
# Eagerly pull dependencies
281-
time cargo metadata --format-version=1 --locked > /dev/null
282-
- name: run zepter
283-
run: |
284-
cargo install zepter -f --locked
285-
zepter --version
286-
time zepter run check
262+
# TODO: Re-enable this when we have a way to test it
263+
# feature-propagation:
264+
# runs-on: ubuntu-latest
265+
# timeout-minutes: 20
266+
# steps:
267+
# - uses: actions/checkout@v5
268+
# - name: fetch deps
269+
# run: |
270+
# # Eagerly pull dependencies
271+
# time cargo metadata --format-version=1 --locked > /dev/null
272+
# - name: run zepter
273+
# run: |
274+
# cargo install zepter -f --locked
275+
# zepter --version
276+
# time zepter run check
287277

288278
deny:
289279
uses: ithacaxyz/ci/.github/workflows/deny.yml@main
@@ -305,7 +295,7 @@ jobs:
305295
- grafana
306296
- no-test-deps
307297
- features
308-
- feature-propagation
298+
# - feature-propagation
309299
- deny
310300
timeout-minutes: 30
311301
steps:

0 commit comments

Comments
 (0)