-
Notifications
You must be signed in to change notification settings - Fork 0
124 lines (120 loc) · 3.7 KB
/
pectra.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
name: Pectra Devnet 5
on:
push:
branches:
- init
env:
S3_BUCKET: hive-results
S3_PATH: pectra-devnet-5
INSTALL_RCLONE_VERSION: v1.68.2
GLOBAL_EXTRA_FLAGS: >-
--sim.buildarg fixtures=https://github.com/ethereum/execution-spec-tests/releases/download/pectra-devnet-5%40v1.1.0/fixtures_pectra-devnet-5.tar.gz
--sim.buildarg branch=pectra-devnet-5
--client.checktimelimit=60s
--sim.parallelism=4
CLIENT_CONFIG: |
- client: go-ethereum
nametag: prague-devnet-5
dockerfile: git
build_args:
github: s1na/go-ethereum
tag: prague-devnet-5
- client: besu
nametag: prague-devnet-5
dockerfile: git
build_args:
github: siladu/besu
tag: pectra-devnet-5-interop
- client: reth
nametag: main
dockerfile: git
build_args:
github: paradigmxyz/reth
tag: main
- client: nethermind
nametag: main
dockerfile: git
build_args:
github: NethermindEth/nethermind
tag: pectra-devnet-5
- client: erigon
nametag: pectra5
build_args:
baseimage: erigontech/erigon
tag: pectra5
jobs:
rpc-compat:
runs-on: self-hosted-ghr-size-m-x64
concurrency:
group: >-
${{ github.head_ref }}-${{ matrix.client }}-rpc-compat
cancel-in-progress: true
strategy:
fail-fast: false
matrix:
client: [go-ethereum, besu, reth, nethermind, erigon]
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/install-deps
- uses: ./
with:
client: ${{ matrix.client }}
simulator: ethereum/rpc-compat
client_config: ${{ env.CLIENT_CONFIG }}
extra_flags: ${{ env.GLOBAL_EXTRA_FLAGS }}
s3_upload: true
s3_bucket: ${{ env.S3_BUCKET }}
s3_path: ${{ env.S3_PATH }}
rclone_config: ${{ secrets.RCLONE_CONFIG }}
rclone_version: ${{ env.INSTALL_RCLONE_VERSION }}
workflow_artifact_upload: true
eest-c-engine:
runs-on: self-hosted-ghr-size-l-x64
concurrency:
group: >-
${{ github.head_ref }}-${{ matrix.client }}-eest-consume-engine
cancel-in-progress: true
strategy:
fail-fast: false
matrix:
client: [go-ethereum, besu, reth, nethermind, erigon]
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/install-deps
- uses: ./
with:
client: ${{ matrix.client }}
simulator: ethereum/eest/consume-engine
client_config: ${{ env.CLIENT_CONFIG }}
extra_flags: ${{ env.GLOBAL_EXTRA_FLAGS }}
s3_upload: true
s3_bucket: ${{ env.S3_BUCKET }}
s3_path: ${{ env.S3_PATH }}
rclone_config: ${{ secrets.RCLONE_CONFIG }}
rclone_version: ${{ env.INSTALL_RCLONE_VERSION }}
workflow_artifact_upload: true
eest-c-rlp:
runs-on: self-hosted-ghr-size-l-x64
concurrency:
group: >-
${{ github.head_ref }}-${{ matrix.client }}-eest-consume-rlp
cancel-in-progress: true
strategy:
fail-fast: false
matrix:
client: [go-ethereum, besu, reth, nethermind, erigon]
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/install-deps
- uses: ./
with:
client: ${{ matrix.client }}
simulator: ethereum/eest/consume-rlp
client_config: ${{ env.CLIENT_CONFIG }}
extra_flags: ${{ env.GLOBAL_EXTRA_FLAGS }}
s3_upload: true
s3_bucket: ${{ env.S3_BUCKET }}
s3_path: ${{ env.S3_PATH }}
rclone_config: ${{ secrets.RCLONE_CONFIG }}
rclone_version: ${{ env.INSTALL_RCLONE_VERSION }}
workflow_artifact_upload: true