forked from NethermindEth/nethermind
-
Notifications
You must be signed in to change notification settings - Fork 0
140 lines (121 loc) · 4.54 KB
/
sync-testnets.yml
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
name: Sync Testnets
on:
workflow_run:
workflows: ["Publish Docker image"]
branches: ["master"]
types:
- completed
workflow_dispatch:
env:
DOTNET_SYSTEM_CONSOLE_ALLOW_ANSI_COLOR_REDIRECTION: "1"
TERM: xterm
jobs:
testnet-sync:
strategy:
fail-fast: false
matrix:
include:
- network: "holesky"
checkpoint-sync-url: "https://holesky.beaconstate.ethstaker.cc/"
cl-client: "lighthouse"
el-client: "nethermind:nethermindeth/nethermind:master"
agent: ubuntu-latest
- network: "chiado"
checkpoint-sync-url: "http://139.144.26.89:4000/"
cl-client: "lighthouse"
el-client: "nethermind:nethermindeth/nethermind:master"
agent: sync-agent-80gb
- network: "sepolia"
checkpoint-sync-url: "https://beaconstate-sepolia.chainsafe.io"
cl-client: "lighthouse"
el-client: "nethermind:nethermindeth/nethermind:master"
agent: sync-agent-80gb
name: "Run sync of ${{ matrix.network }} testnet"
runs-on: ${{ matrix.agent }}
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
clean: true
- name: Configure settings
id: settings
run: |
echo "BUILD_TIMESTAMP=$(date '+%s')" >> $GITHUB_OUTPUT
echo "COMMIT_HASH=$(git describe --always --exclude=* --abbrev=40)" >> $GITHUB_OUTPUT
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Installing requirements
run: |
sudo apt-get update
sudo apt-get install -y make build-essential jq screen lshw dmidecode fio
- name: Setup Go environment
uses: actions/setup-go@v4.0.0
with:
go-version: '1.20'
check-latest: true
cache: true
- name: Install Sedge environment
run: |
echo "Downloading sedge sources..."
git clone https://github.com/NethermindEth/sedge.git sedge --branch develop --single-branch
echo "Sources downloaded."
cd sedge
echo "Building sedge..."
make compile
- name: Run Sedge
working-directory: sedge
run: |
echo 'Generating sedge docker...'
./build/sedge deps install
./build/sedge generate --logging none -p $GITHUB_WORKSPACE/sedge \
full-node --map-all --no-mev-boost --no-validator --network ${{ matrix.network }} \
-c ${{ matrix.cl-client }} -e ${{ matrix.el-client }} \
--el-extra-flag Sync.NonValidatorNode=true --el-extra-flag Sync.DownloadBodiesInFastSync=false \
--el-extra-flag Sync.DownloadReceiptsInFastSync=false \
--el-extra-flag JsonRpc.EnabledModules=[Eth,Subscribe,Trace,TxPool,Web3,Personal,Proof,Net,Parity,Health,Rpc,Debug] \
--checkpoint-sync-url=${{ matrix.checkpoint-sync-url }}
echo 'Running sedge...'
./build/sedge run -p $GITHUB_WORKSPACE/sedge
- name: Wait for ${{ matrix.network }} to sync
id: wait
timeout-minutes: 180
run: |
set +e
declare -A bad_logs
bad_logs["Invalid"]=1
bad_logs["Exception"]=1
bad_logs["Corrupted"]=1
declare -A good_logs
good_logs["Synced chain Head"]=0
good_logs["Processed"]=0
declare -A required_count
required_count["Synced chain Head"]=20
required_count["Processed"]=20
echo "Starting Docker logs monitoring..."
docker logs -f sedge-execution-client | while read -r line; do
echo "$line"
for bad_log in "${!bad_logs[@]}"; do
if [[ "$line" == *"$bad_log"* ]]; then
echo "Error: $bad_log found in Docker logs."
exit 1
fi
done
for good_log in "${!good_logs[@]}"; do
if [[ "$line" == *"$good_log"* ]]; then
((good_logs["$good_log"]++))
fi
done
# Check if all good logs have reached the required count
all_reached_required_count=true
for good_log in "${!good_logs[@]}"; do
if [[ ${good_logs[$good_log]} -lt ${required_count[$good_log]} ]]; then
all_reached_required_count=false
break
fi
done
if $all_reached_required_count; then
echo "All required logs found."
break
fi
done
echo "Node is synced."