Skip to content

Commit

Permalink
Offer Prysm on ARM64 (#1922)
Browse files Browse the repository at this point in the history
  • Loading branch information
yorickdowne committed Sep 14, 2024
1 parent a0c13b8 commit fb6c083
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions ethd
Original file line number Diff line number Diff line change
Expand Up @@ -2622,7 +2622,8 @@ __query_validator_client() {
"lighthouse-vc-only.yml" "Lighthouse validator client" \
"teku-vc-only.yml" "Teku validator client" \
"lodestar-vc-only.yml" "Lodestar validator client" \
"nimbus-vc-only.yml" "Nimbus validator client" 3>&1 1>&2 2>&3)
"nimbus-vc-only.yml" "Nimbus validator client" \
"prysm-vc-only.yml" "Prysm validator client" 3>&1 1>&2 2>&3)
else
CONSENSUS_CLIENT=$(whiptail --notags --title "Select validator client" --menu \
"Which validator client do you want to run?" 12 65 5 \
Expand Down Expand Up @@ -2653,6 +2654,7 @@ __query_consensus_client() {
"lodestar.yml" "Lodestar (Javascript) - consensus and validator client" \
"teku.yml" "Teku (Java) - consensus and validator client" \
"lighthouse.yml" "Lighthouse (Rust) - consensus and validator client" \
"prysm.yml" "Prysm (Go) - consensus and validator client" \
3>&1 1>&2 2>&3)
elif uname -m | grep -q riscv64; then
CONSENSUS_CLIENT=$(whiptail --notags --title "Select consensus client" --menu \
Expand Down Expand Up @@ -2689,7 +2691,9 @@ __query_consensus_only_client() {
"grandine-cl-only.yml" "Grandine (Rust) - consensus client" \
"lodestar-cl-only.yml" "Lodestar (Javascript) - consensus client" \
"lighthouse-cl-only.yml" "Lighthouse (Rust) - consensus client" \
"teku-cl-only.yml" "Teku (Java) - consensus client" 3>&1 1>&2 2>&3)
"teku-cl-only.yml" "Teku (Java) - consensus client" \
"prysm-cl-only.yml" "Prysm (Go) - consensus client" \
3>&1 1>&2 2>&3)
elif uname -m | grep -q riscv64; then
CONSENSUS_CLIENT=$(whiptail --notags --title "Select consensus client" --menu \
"Which consensus client do you want to run?" 11 65 4 \
Expand Down

0 comments on commit fb6c083

Please sign in to comment.