25 lines
350 B
Bash
Executable File
25 lines
350 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -euv
|
|
|
|
cd $(dirname "$0")
|
|
|
|
export GIT_REVISION=$(git rev-parse HEAD)
|
|
|
|
NETWORK=testnet1
|
|
|
|
if [[ $(git rev-parse --abbrev-ref HEAD) == "devel" ]]; then
|
|
NETWORK=testnet1
|
|
fi
|
|
|
|
buildAndPush() {
|
|
export NETWORK=$1
|
|
export NETWORK_TYPE=$2
|
|
|
|
(cd beacon_node && make push)
|
|
}
|
|
|
|
# buildAndPush $NETWORK rlpx
|
|
buildAndPush $NETWORK libp2p_spec
|
|
|