Skip to content

Commit

Permalink
Add riscv to ethd conig
Browse files Browse the repository at this point in the history
  • Loading branch information
yorickdowne committed Jul 19, 2024
1 parent 0a79ca5 commit 80d08c2
Showing 1 changed file with 41 additions and 2 deletions.
43 changes: 41 additions & 2 deletions ethd
Original file line number Diff line number Diff line change
Expand Up @@ -2473,6 +2473,10 @@ screen.\n\nCustom testnets only work with a URL to fetch their configuration fro

query_deployment() {
if [ "${NETWORK}" = "gnosis" ]; then
if uname -a | grep -q riscv; then
echo "Gnosis network has no available client combos on RISC-V. Aborting."
exit 1
fi
__deployment=$(whiptail --notags --title "Select deployment type" --menu \
"What kind of deployment do you want to run?" 10 65 3 \
"node" "Ethereum node - consensus, execution and validator client" \
Expand All @@ -2484,15 +2488,25 @@ query_deployment() {
"node" "Ethereum node - consensus, execution and validator client" \
"rpc" "Ethereum RPC node - consensus and execution client" \
"rocket" "Validator client only - integrate with RocketPool" 3>&1 1>&2 2>&3)
else
elif uname -a | grep -q riscv; then
__deployment=$(whiptail --notags --title "Select deployment type" --menu \
"What kind of deployment do you want to run?" 10 65 3 \
"node" "Ethereum node - consensus, execution and validator client" \
"rpc" "Ethereum RPC node - consensus and execution client" \
"rocket" "Validator client only - integrate with RocketPool" 3>&1 1>&2 2>&3)
elif uname -a | grep -q amd64; then
__deployment=$(whiptail --notags --title "Select deployment type" --menu \
"What kind of deployment do you want to run?" 11 65 4 \
"node" "Ethereum node - consensus, execution and validator client" \
"rpc" "Ethereum RPC node - consensus and execution client" \
"rocket" "Validator client only - integrate with RocketPool" \
"ssv" "SSV node - consensus, execution and ssv-node" 3>&1 1>&2 2>&3)
else
echo "Eth Docker does not recognize this CPU architecture. Aborting."
echo "Output of uname -a"
uname -a
exit 1
fi

echo "Your deployment choice is: ${__deployment}"
}

Expand Down Expand Up @@ -2558,6 +2572,10 @@ query_consensus_client() {
"lodestar.yml" "Lodestar (Javascript) - consensus and validator client" \
"lighthouse.yml" "Lighthouse (Rust) - consensus and validator client" \
"teku.yml" "Teku (Java) - consensus and validator client" 3>&1 1>&2 2>&3)
elif uname -a | grep -q riscv; then
CONSENSUS_CLIENT=$(whiptail --notags --title "Select consensus client" --menu \
"Which consensus client do you want to run?" 11 65 4 \
"nimbus.yml" "Nimbus (Nim) - consensus and validator client" 3>&1 1>&2 2>&3)
else
CONSENSUS_CLIENT=$(whiptail --notags --title "Select consensus client" --menu \
"Which consensus client do you want to run?" 13 65 6 \
Expand Down Expand Up @@ -2589,6 +2607,10 @@ query_consensus_only_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)
elif uname -a | grep -q riscv; then
CONSENSUS_CLIENT=$(whiptail --notags --title "Select consensus client" --menu \
"Which consensus client do you want to run?" 11 65 4 \
"nimbus-cl-only.yml" "Nimbus (Nim) - consensus client" 3>&1 1>&2 2>&3)
else
CONSENSUS_CLIENT=$(whiptail --notags --title "Select consensus client" --menu \
"Which consensus client do you want to run?" 13 65 6 \
Expand Down Expand Up @@ -2655,6 +2677,11 @@ query_execution_client() {
"nethermind.yml" "Nethermind (.NET)" \
"geth.yml" "Geth (Go)" \
"NONE" "Custom - Distributed" 3>&1 1>&2 2>&3)
elif uname -a | grep -q riscv; then
EXECUTION_CLIENT=$(whiptail --notags --title "Select execution client" --menu \
"Which execution client do you want to run?" 11 65 4 \
"geth.yml" "Geth (Go)" \
"NONE" "Custom - Distributed" 3>&1 1>&2 2>&3)
else
EXECUTION_CLIENT=$(whiptail --notags --title "Select execution client" --menu \
"Which execution client do you want to run?" 13 65 6 \
Expand Down Expand Up @@ -3153,6 +3180,18 @@ config() {
var=NIM_DOCKERFILE
set_value_in_env
fi
if uname -a | grep -q riscv; then
# We are using the variable
# shellcheck disable=SC2034
NM_DOCKERFILE=Dockerfile.source
var=NM_DOCKERFILE
set_value_in_env
# We are using the variable
# shellcheck disable=SC2034
GETH_DOCKERFILE=Dockerfile.source
var=GETH_DOCKERFILE
set_value_in_env
fi

${__as_owner} rm .env.original

Expand Down

0 comments on commit 80d08c2

Please sign in to comment.