107 lines
2.2 KiB
Bash
Executable File
107 lines
2.2 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
cd "$(dirname "${BASH_SOURCE[0]}")"
|
|
|
|
####################
|
|
# argument parsing #
|
|
####################
|
|
! getopt --test > /dev/null
|
|
if [ ${PIPESTATUS[0]} != 4 ]; then
|
|
echo '`getopt --test` failed in this environment.'
|
|
exit 1
|
|
fi
|
|
|
|
OPTS="h"
|
|
LONGOPTS="help,network:,build,run"
|
|
|
|
# default values
|
|
NETWORK="medalla"
|
|
BUILD=0
|
|
RUN=0
|
|
|
|
print_help() {
|
|
cat <<EOF
|
|
Usage: $(basename $0) <options> -- <nimbus_beacon_node options>
|
|
|
|
-h, --help this help message
|
|
--network default: ${NETWORK}
|
|
--build build the nimbus_beacon_node binary
|
|
--run run the nimbus_beacon_node binary
|
|
EOF
|
|
}
|
|
|
|
! PARSED=$(getopt --options=${OPTS} --longoptions=${LONGOPTS} --name "$0" -- "$@")
|
|
if [ ${PIPESTATUS[0]} != 0 ]; then
|
|
# getopt has complained about wrong arguments to stdout
|
|
exit 1
|
|
fi
|
|
|
|
# read getopt's output this way to handle the quoting right
|
|
eval set -- "$PARSED"
|
|
while true; do
|
|
case "$1" in
|
|
-h|--help)
|
|
print_help
|
|
exit
|
|
;;
|
|
--network)
|
|
NETWORK="$2"
|
|
shift 2
|
|
;;
|
|
--build)
|
|
BUILD=1
|
|
shift
|
|
;;
|
|
--run)
|
|
RUN=1
|
|
shift
|
|
;;
|
|
--)
|
|
shift
|
|
break
|
|
;;
|
|
*)
|
|
echo "argument parsing error"
|
|
print_help
|
|
exit 1
|
|
esac
|
|
done
|
|
|
|
# docker-compose.yml inserts newlines in our options
|
|
if [[ "$(echo $1 | tr -d '[:space:]')" == "--" ]]; then
|
|
shift
|
|
fi
|
|
|
|
EXTRA_ARGS="$@"
|
|
|
|
#########
|
|
# build #
|
|
#########
|
|
|
|
if [[ "$BUILD" == "1" ]]; then
|
|
# "/root/.cache/nimbus" is the external bind-mounted dir, preserved between runs
|
|
cd /root/.cache/nimbus
|
|
[[ -d nim-beacon-chain ]] || git clone https://github.com/status-im/nim-beacon-chain.git
|
|
cd nim-beacon-chain
|
|
git config pull.rebase false
|
|
git checkout -- .
|
|
git checkout devel
|
|
git pull
|
|
# don't use too much RAM
|
|
make update
|
|
make LOG_LEVEL="TRACE" NIMFLAGS="-d:insecure -d:testnet_servers_image --parallelBuild:1" nimbus_beacon_node nimbus_signing_process
|
|
fi
|
|
|
|
#######
|
|
# run #
|
|
#######
|
|
|
|
if [[ "$RUN" == "1" ]]; then
|
|
cd /root/.cache/nimbus/nim-beacon-chain
|
|
# make sure Docker's SIGINT reaches the nimbus_beacon_node binary
|
|
exec build/nimbus_beacon_node --network="${NETWORK}" --data-dir="build/data/shared_${NETWORK}_0" --web3-url="wss://goerli.infura.io/ws/v3/6224f3c792cc443fafb64e70a98f871e" ${EXTRA_ARGS}
|
|
fi
|
|
|