Skip to content

Commit

Permalink
update: version 0.7.0 for launcher scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
kstoykov committed Apr 29, 2022
1 parent 2e49e1d commit 72d06a2
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion tools-bash/constructor/src/modules/repos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
cd $PARAM_SOURCE_DIR

echo -ne "Cloning the repos...";
branch="v0.6.0"
branch="v0.7.0"
git clone -q --branch $branch https://github.com/CudoVentures/cudos-node.git CudosNode
git clone -q --branch $branch https://github.com/CudoVentures/cudos-builders.git CudosBuilders
git clone -q --branch $branch https://github.com/CudoVentures/cosmos-gravity-bridge.git CudosGravityBridge
Expand Down
2 changes: 1 addition & 1 deletion tools-bash/launcher/src/modules/start-root-validator.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ validatorComputerPort=$(getComputerPort $validatorComputerIndex)
validatorComputerUser=$(getComputerUser $validatorComputerIndex)

echo -ne "Preparing root-validator's repos...";
branch="v0.6.0"
branch="v0.7.0"
ssh -o "StrictHostKeyChecking no" ${validatorComputerUser}@${validatorComputerIp} -p ${validatorComputerPort} "cd $PARAM_SOURCE_DIR && sudo rm -rf ./CudosNode && git clone -q --branch $branch https://github.com/CudoVentures/cudos-node.git CudosNode"
ssh -o "StrictHostKeyChecking no" ${validatorComputerUser}@${validatorComputerIp} -p ${validatorComputerPort} "cd $PARAM_SOURCE_DIR && sudo rm -rf ./CudosBuilders && git clone -q --branch $branch https://github.com/CudoVentures/cudos-builders.git CudosBuilders"
ssh -o "StrictHostKeyChecking no" ${validatorComputerUser}@${validatorComputerIp} -p ${validatorComputerPort} "cd $PARAM_SOURCE_DIR && sudo rm -rf ./CudosGravityBridge && git clone -q --branch $branch https://github.com/CudoVentures/cosmos-gravity-bridge.git CudosGravityBridge"
Expand Down
2 changes: 1 addition & 1 deletion tools-bash/launcher/src/modules/start-seeds.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ do
seedComputerUser=$(getComputerUser $seedComputerIndex)

echo -ne "Preparing seed($i)'s repos...";
branch="v0.6.0"
branch="v0.7.0"
ssh -o "StrictHostKeyChecking no" ${seedComputerUser}@${seedComputerIp} -p ${seedComputerPort} "cd $PARAM_SOURCE_DIR && sudo rm -rf ./CudosNode && git clone -q --branch $branch https://github.com/CudoVentures/cudos-node.git CudosNode"
ssh -o "StrictHostKeyChecking no" ${seedComputerUser}@${seedComputerIp} -p ${seedComputerPort} "cd $PARAM_SOURCE_DIR && sudo rm -rf ./CudosBuilders && git clone -q --branch $branch https://github.com/CudoVentures/cudos-builders.git CudosBuilders"
ssh -o "StrictHostKeyChecking no" ${seedComputerUser}@${seedComputerIp} -p ${seedComputerPort} "cd $PARAM_SOURCE_DIR && sudo rm -rf ./CudosGravityBridge && git clone -q --branch $branch https://github.com/CudoVentures/cosmos-gravity-bridge.git CudosGravityBridge"
Expand Down
2 changes: 1 addition & 1 deletion tools-bash/launcher/src/modules/start-sentries.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ do
sentryComputerUser=$(getComputerUser $sentryComputerIndex)

echo -ne "Preparing sentry($i)'s repos...";
branch="v0.6.0"
branch="v0.7.0"
ssh -o "StrictHostKeyChecking no" ${sentryComputerUser}@${sentryComputerIp} -p ${sentryComputerPort} "cd $PARAM_SOURCE_DIR && sudo rm -rf ./CudosNode && git clone -q --branch $branch https://github.com/CudoVentures/cudos-node.git CudosNode"
ssh -o "StrictHostKeyChecking no" ${sentryComputerUser}@${sentryComputerIp} -p ${sentryComputerPort} "cd $PARAM_SOURCE_DIR && sudo rm -rf ./CudosBuilders && git clone -q --branch $branch https://github.com/CudoVentures/cudos-builders.git CudosBuilders"
ssh -o "StrictHostKeyChecking no" ${sentryComputerUser}@${sentryComputerIp} -p ${sentryComputerPort} "cd $PARAM_SOURCE_DIR && sudo rm -rf ./CudosGravityBridge && git clone -q --branch $branch https://github.com/CudoVentures/cosmos-gravity-bridge.git CudosGravityBridge"
Expand Down
2 changes: 1 addition & 1 deletion tools-bash/readme.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Merging to cudos-master

Update branch variable in from "cudos-dev" to "v0.6.0".
Update branch variable in from "cudos-dev" to "v0.7.0".
Update required free space from 5GB to 500GB
Update git commit hash

Expand Down
2 changes: 1 addition & 1 deletion tools-bash/relayer/src/modules/repos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
cd $PARAM_SOURCE_DIR

echo -ne "Cloning the repos...";
branch="v0.6.0"
branch="v0.7.0"
git clone -q --branch $branch https://github.com/CudoVentures/cudos-builders.git CudosBuilders
echo -e "${STYLE_GREEN}OK${STYLE_DEFAULT}";

Expand Down

0 comments on commit 72d06a2

Please sign in to comment.