fix docker/shared_testnet/entry_point.sh [skip ci]

This commit is contained in:
Ștefan Talpalaru 2020-07-11 03:02:57 +02:00 committed by zah
parent c544a3b250
commit 61c6926263
2 changed files with 6 additions and 7 deletions

View File

@ -163,7 +163,7 @@ clean-testnet0:
clean-testnet1:
rm -rf build/data/testnet1*
testnet0 testnet1: | beacon_node build deps
testnet0 testnet1: | beacon_node
build/beacon_node \
--network=$@ \
--log-level="$(LOG_LEVEL)" \
@ -173,21 +173,21 @@ testnet0 testnet1: | beacon_node build deps
clean-altona:
rm -rf build/data/shared_altona*
altona-deposit: | beacon_node build deps
altona-deposit: | beacon_node
build/beacon_node deposits create \
--network=altona \
--count=$(VALIDATORS) \
--ask-for-key \
--web3-url=$(GOERLI_WEB3_URL)
altona: | beacon_node build deps
altona: | beacon_node
build/beacon_node \
--network=altona \
--log-level="$(LOG_LEVEL)" \
--data-dir=build/data/shared_altona_$(NODE_ID) \
$(GOERLI_TESTNETS_PARAMS) $(NODE_PARAMS)
altona-dev: | beacon_node build deps
altona-dev: | beacon_node
build/beacon_node \
--network=altona \
--log-level="DEBUG; TRACE:discv5,networking; REQUIRED:none; DISABLED:none" \

View File

@ -90,7 +90,7 @@ if [[ "$BUILD" == "1" ]]; then
git pull
# don't use too much RAM
make update
make LOG_LEVEL="TRACE" NIMFLAGS="-d:insecure -d:testnet_servers_image --parallelBuild:1" SCRIPT_PARAMS="--skipGoerliKey --writeLogFile=false --buildOnly" ${NETWORK}
make LOG_LEVEL="TRACE" NIMFLAGS="-d:insecure -d:testnet_servers_image --parallelBuild:1" beacon_node
fi
#######
@ -99,8 +99,7 @@ fi
if [[ "$RUN" == "1" ]]; then
cd /root/.cache/nimbus/nim-beacon-chain
echo $(make SCRIPT_PARAMS="--skipGoerliKey --writeLogFile=false --runOnly --printCmdOnly" ${NETWORK} | tail -n 1) ${EXTRA_ARGS}
# make sure Docker's SIGINT reaches the beacon_node binary
eval $(make SCRIPT_PARAMS="--skipGoerliKey --writeLogFile=false --runOnly --printCmdOnly" ${NETWORK} | tail -n 1) ${EXTRA_ARGS}
exec build/beacon_node --network=${NETWORK} --data-dir=build/data/shared_${NETWORK}_0 ${EXTRA_ARGS}
fi