Skip to content

Commit 0b07657

Browse files
shekhirinyongkangc
authored andcommitted
ci: run on ubuntu instead of reth runner (#20196)
1 parent e7bd168 commit 0b07657

File tree

12 files changed

+23
-43
lines changed

12 files changed

+23
-43
lines changed

.github/workflows/bench.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@ env:
1515
name: bench
1616
jobs:
1717
codspeed:
18-
runs-on:
19-
group: Reth
18+
runs-on: ubuntu-latest
2019
steps:
2120
- uses: actions/checkout@v6
2221
with:

.github/workflows/compact.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@ env:
1717
name: compact-codec
1818
jobs:
1919
compact-codec:
20-
runs-on:
21-
group: Reth
20+
runs-on: ubuntu-latest
2221
strategy:
2322
matrix:
2423
bin:

.github/workflows/e2e.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,7 @@ concurrency:
1919
jobs:
2020
test:
2121
name: e2e-testsuite
22-
runs-on:
23-
group: Reth
22+
runs-on: ubuntu-latest
2423
env:
2524
RUST_BACKTRACE: 1
2625
timeout-minutes: 90
@@ -43,4 +42,3 @@ jobs:
4342
--exclude 'op-reth' \
4443
--exclude 'reth' \
4544
-E 'binary(e2e_testsuite)'
46-

.github/workflows/hive.yml

Lines changed: 3 additions & 6 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:
28-
group: Reth
27+
runs-on: ubuntu-latest
2928
steps:
3029
- uses: actions/checkout@v6
3130
- name: Checkout hive tests
@@ -179,8 +178,7 @@ jobs:
179178
- prepare-reth
180179
- prepare-hive
181180
name: run ${{ matrix.scenario.sim }}${{ matrix.scenario.limit && format(' - {0}', matrix.scenario.limit) }}
182-
runs-on:
183-
group: Reth
181+
runs-on: ubuntu-latest
184182
permissions:
185183
issues: write
186184
steps:
@@ -247,8 +245,7 @@ jobs:
247245
notify-on-error:
248246
needs: test
249247
if: failure()
250-
runs-on:
251-
group: Reth
248+
runs-on: ubuntu-latest
252249
steps:
253250
- name: Slack Webhook Action
254251
uses: rtCamp/action-slack-notify@v2

.github/workflows/integration.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,7 @@ jobs:
2323
test:
2424
name: test / ${{ matrix.network }}
2525
if: github.event_name != 'schedule'
26-
runs-on:
27-
group: Reth
26+
runs-on: ubuntu-latest
2827
env:
2928
RUST_BACKTRACE: 1
3029
strategy:

.github/workflows/kurtosis-op.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
push:
1111
tags:
12-
- '*'
12+
- "*"
1313

1414
env:
1515
CARGO_TERM_COLOR: always
@@ -32,8 +32,7 @@ jobs:
3232
strategy:
3333
fail-fast: false
3434
name: run kurtosis
35-
runs-on:
36-
group: Reth
35+
runs-on: ubuntu-latest
3736
needs:
3837
- prepare-reth
3938
steps:
@@ -83,12 +82,10 @@ jobs:
8382
kurtosis service logs -a op-devnet op-cl-2151908-2-op-node-op-reth-op-kurtosis
8483
exit 1
8584
86-
8785
notify-on-error:
8886
needs: test
8987
if: failure()
90-
runs-on:
91-
group: Reth
88+
runs-on: ubuntu-latest
9289
steps:
9390
- name: Slack Webhook Action
9491
uses: rtCamp/action-slack-notify@v2

.github/workflows/kurtosis.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
push:
1111
tags:
12-
- '*'
12+
- "*"
1313

1414
env:
1515
CARGO_TERM_COLOR: always
@@ -30,8 +30,7 @@ jobs:
3030
strategy:
3131
fail-fast: false
3232
name: run kurtosis
33-
runs-on:
34-
group: Reth
33+
runs-on: ubuntu-latest
3534
needs:
3635
- prepare-reth
3736
steps:
@@ -54,13 +53,12 @@ jobs:
5453
- name: Run kurtosis
5554
uses: ethpandaops/kurtosis-assertoor-github-action@v1
5655
with:
57-
ethereum_package_args: '.github/assets/kurtosis_network_params.yaml'
56+
ethereum_package_args: ".github/assets/kurtosis_network_params.yaml"
5857

5958
notify-on-error:
6059
needs: test
6160
if: failure()
62-
runs-on:
63-
group: Reth
61+
runs-on: ubuntu-latest
6462
steps:
6563
- name: Slack Webhook Action
6664
uses: rtCamp/action-slack-notify@v2

.github/workflows/prepare-reth.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,7 @@ jobs:
2626
prepare-reth:
2727
if: github.repository == 'paradigmxyz/reth'
2828
timeout-minutes: 45
29-
runs-on:
30-
group: Reth
29+
runs-on: ubuntu-latest
3130
steps:
3231
- uses: actions/checkout@v6
3332
- run: mkdir artifacts

.github/workflows/stage.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@ jobs:
2222
name: stage-run-test
2323
# Only run stage commands test in merge groups
2424
if: github.event_name == 'merge_group'
25-
runs-on:
26-
group: Reth
25+
runs-on: ubuntu-latest
2726
env:
2827
RUST_LOG: info,sync=error
2928
RUST_BACKTRACE: 1

.github/workflows/sync-era.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@ concurrency:
1717
jobs:
1818
sync:
1919
name: sync (${{ matrix.chain.bin }})
20-
runs-on:
21-
group: Reth
20+
runs-on: ubuntu-latest
2221
env:
2322
RUST_LOG: info,sync=error
2423
RUST_BACKTRACE: 1
@@ -64,4 +63,4 @@ jobs:
6463
${{ matrix.chain.bin }} stage unwind num-blocks 100 --chain ${{ matrix.chain.chain }}
6564
- name: Run stage unwind to block hash
6665
run: |
67-
${{ matrix.chain.bin }} stage unwind to-block ${{ matrix.chain.unwind-target }} --chain ${{ matrix.chain.chain }}
66+
${{ matrix.chain.bin }} stage unwind to-block ${{ matrix.chain.unwind-target }} --chain ${{ matrix.chain.chain }}

0 commit comments

Comments
 (0)