-
Notifications
You must be signed in to change notification settings - Fork 10
75 lines (66 loc) · 2.51 KB
/
check_bootnodes_enrs.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
name: Check Bootnodes ENRs
on:
pull_request:
branches:
- main
jobs:
check_enrs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install protobuf-compiler
run: |
sudo apt-get update
sudo apt-get install -y protobuf-compiler
- name: Install enr-cli
run: cargo install enr-cli
- name: Install .yaml parser
run: wget https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64 -O /usr/bin/yq
- name: Check bootnodes ENRs for padding
run: |
files_with_padding=""
for FILE in $(find . -type f \( -name 'bootnodes.yaml' -o -name 'bootstrap_nodes.txt' \)); do
echo "Checking paddings in file: $FILE"
while read -r LINE; do
if [[ "$LINE" =~ enr: ]]; then
BASE64_STRING=${LINE#enr:}
if [[ "$BASE64_STRING" =~ = ]]; then
if [[ "$files_with_padding" != *"$FILE"* ]]; then
echo "Error: ENR in $FILE contains padding: $LINE"
files_with_padding="$files_with_padding $FILE"
fi
fi
fi
done < "$FILE"
done
if [ -n "$files_with_padding" ]; then
echo "Error: Bootnodes ENR strings contain padding in the following files:"
echo "$files_with_padding"
exit 1
fi
- name: Check ENR Strings with enr-cli
run: |
for FILE in $(find . -type f \( -name 'bootnodes.yaml' -o -name 'bootstrap_nodes.txt' \)); do
echo "Testing decoding in file: $FILE"
while IFS= read -r LINE; do
if [[ "$LINE" =~ enr: ]]; then
if [[ "$FILE" == *".yaml" ]]; then
BASE64_STRING=${LINE#enr:}
elif [[ "$FILE" == *".txt" ]]; then
BASE64_STRING=$(echo "$LINE" | grep -o 'enr:.*')
else
echo "Unsupported file type: $FILE"
exit 1
fi
BASE64_STRING=$(echo "$BASE64_STRING" | awk '{gsub(/"/, "", $0); print}')
if [[ -n "$BASE64_STRING" ]]; then
enr-cli read "$BASE64_STRING" 1>/dev/null
if [ $? -ne 0 ]; then
echo "Error: ENR could not be decoded in $FILE: enr:$BASE64_STRING"
exit 1
fi
fi
fi
done < "$FILE"
done