Fix beta testnet launch script

This commit is contained in:
Pankaj Garg 2019-04-03 19:30:35 -07:00
parent 0b23af324b
commit ed78c8d3bb
1 changed files with 12 additions and 13 deletions

View File

@ -218,19 +218,18 @@ start() {
RUST_LOG=solana=info \ RUST_LOG=solana=info \
ci/testnet-deploy.sh beta-testnet-solana-com gce us-west1-a \ ci/testnet-deploy.sh beta-testnet-solana-com gce us-west1-a \
-t "$CHANNEL_OR_TAG" -n 65 -c 0 -x -P -D -t "$CHANNEL_OR_TAG" -n 65 -c 0 -x -P -D
NO_VALIDATOR_SANITY=1 \
if ! $maybeDelete; then RUST_LOG=solana=info \
NO_VALIDATOR_SANITY=1 \ ci/testnet-deploy.sh beta-testnet-solana-com ec2 us-west-1a \
RUST_LOG=solana=info \ -t "$CHANNEL_OR_TAG" -n 35 -c 0 -s -u -P -a eipalloc-0f286cf8a0771ce35 \
ci/testnet-deploy.sh beta-testnet-solana-com ec2 us-west-1a \ ${maybeReuseLedger:+-r} \
-t "$CHANNEL_OR_TAG" -n 35 -c 0 -s -u -P -a eipalloc-0f286cf8a0771ce35 \ ${maybeDelete:+-D}
${maybeReuseLedger:+-r} NO_VALIDATOR_SANITY=1 \
NO_VALIDATOR_SANITY=1 \ RUST_LOG=solana=info \
RUST_LOG=solana=info \ ci/testnet-deploy.sh beta-testnet-solana-com gce us-west1-a \
ci/testnet-deploy.sh beta-testnet-solana-com gce us-west1-a \ -t "$CHANNEL_OR_TAG" -n 65 -c 0 -x -P \
-t "$CHANNEL_OR_TAG" -n 65 -c 0 -x -P \ ${maybeReuseLedger:+-r} \
${maybeReuseLedger:+-r} ${maybeDelete:+-D}
fi
) )
;; ;;
testnet-beta-perf) testnet-beta-perf)