David Boreham
83397bbae4
Some checks failed
Webapp Test / Run webapp test suite (push) Successful in 4m33s
Smoke Test / Run basic test suite (push) Successful in 4m2s
Lint Checks / Run linter (push) Successful in 37s
Publish / Build and publish (push) Successful in 1m17s
Deploy Test / Run deploy test suite (push) Successful in 4m58s
Database Test / Run database hosting test on kind/k8s (push) Successful in 9m6s
Container Registry Test / Run contaier registry hosting test on kind/k8s (push) Successful in 3m53s
External Stack Test / Run external stack test suite (push) Successful in 4m42s
Fixturenet-Laconicd-Test / Run Laconicd fixturenet and Laconic CLI tests (push) Successful in 13m19s
K8s Deploy Test / Run deploy test suite on kind/k8s (push) Successful in 8m16s
Fixturenet-Eth-Plugeth-Arm-Test / Run an Ethereum plugeth fixturenet test (push) Failing after 3h13m59s
Fixturenet-Eth-Plugeth-Test / Run an Ethereum plugeth fixturenet test (push) Failing after 3h14m0s
Reviewed-on: #875 Co-authored-by: David Boreham <david@bozemanpass.com> Co-committed-by: David Boreham <david@bozemanpass.com>
82 lines
2.8 KiB
Bash
Executable File
82 lines
2.8 KiB
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
if [ -n "$CERC_SCRIPT_DEBUG" ]; then
|
|
set -x
|
|
fi
|
|
|
|
node_count=4
|
|
node_dir_prefix="laconic-network-dir"
|
|
chain_id="laconic_81337-6"
|
|
node_moniker_prefix="node"
|
|
|
|
echo "Deleting any existing network directories..."
|
|
for (( i=1 ; i<=$node_count ; i++ ));
|
|
do
|
|
node_network_dir=${node_dir_prefix}${i}
|
|
if [[ -d $node_network_dir ]]; then
|
|
echo "Deleting ${node_network_dir}"
|
|
rm -rf ${node_network_dir}
|
|
fi
|
|
done
|
|
echo "Deleting any existing deployments..."
|
|
for (( i=1 ; i<=$node_count ; i++ ));
|
|
do
|
|
node_deployment_dir=${node_dir_prefix}${i}-deployment
|
|
node_spec_file=${node_dir_prefix}${i}-spec.yml
|
|
if [[ -d $node_deployment_dir ]]; then
|
|
echo "Deleting ${node_deployment_dir}"
|
|
rm -rf ${node_deployment_dir}
|
|
fi
|
|
if [[ -f $node_spec_file ]]; then
|
|
echo "Deleting ${node_spec_file}"
|
|
rm ${node_spec_file}
|
|
fi
|
|
done
|
|
|
|
echo "Initalizing ${node_count} nodes networks..."
|
|
for (( i=1 ; i<=$node_count ; i++ ));
|
|
do
|
|
node_network_dir=${node_dir_prefix}${i}
|
|
node_moniker=${node_moniker_prefix}${i}
|
|
laconic-so --stack mainnet-laconic deploy setup --network-dir ${node_network_dir} --initialize-network --chain-id ${chain_id} --node-moniker ${node_moniker}
|
|
done
|
|
|
|
echo "Joining ${node_count} nodes to the network..."
|
|
for (( i=1 ; i<=$node_count ; i++ ));
|
|
do
|
|
node_network_dir=${node_dir_prefix}${i}
|
|
node_moniker=${node_moniker_prefix}${i}
|
|
laconic-so --stack mainnet-laconic deploy setup --network-dir ${node_network_dir} --join-network --key-name ${node_moniker}
|
|
done
|
|
|
|
echo "Merging ${node_count} nodes genesis txns..."
|
|
gentx_files=""
|
|
delimeter=""
|
|
# Note: start at node 2 here because we're going to copy to node 1
|
|
for (( i=2 ; i<=$node_count ; i++ ));
|
|
do
|
|
node_network_dir=${node_dir_prefix}${i}
|
|
node_gentx_file=$(ls ${node_network_dir}/config/gentx/*.json)
|
|
gentx_files+=${delimeter}${node_gentx_file}
|
|
delimeter=","
|
|
done
|
|
# Generate the genesis file on node 1
|
|
laconic-so --stack mainnet-laconic deploy setup --network-dir ${node_dir_prefix}1 --create-network --gentx-files ${gentx_files}
|
|
genesis_file=${node_dir_prefix}1/config/genesis.json
|
|
# Now import the genesis file to the other nodes
|
|
for (( i=2 ; i<=$node_count ; i++ ));
|
|
do
|
|
echo "Importing genesis.json into node ${i}"
|
|
node_network_dir=${node_dir_prefix}${i}
|
|
laconic-so --stack mainnet-laconic deploy setup --network-dir ${node_network_dir} --create-network --genesis-file ${genesis_file}
|
|
done
|
|
|
|
# Create deployments
|
|
echo "Creating ${node_count} deployments..."
|
|
for (( i=1 ; i<=$node_count ; i++ ));
|
|
do
|
|
node_network_dir=${node_dir_prefix}${i}
|
|
laconic-so --stack mainnet-laconic deploy init --output ${node_network_dir}-spec.yml
|
|
laconic-so --stack mainnet-laconic deploy create --deployment-dir ${node_network_dir}-deployment --spec-file ${node_dir_prefix}${i}-spec.yml --network-dir ${node_network_dir}
|
|
done
|