Reenable validator sanity check for testnet-{beta,edge}

This commit is contained in:
Michael Vines 2019-04-15 08:14:00 -07:00
parent 0767c0c07f
commit 6c9fba058b

View File

@ -205,11 +205,10 @@ start() {
testnet-edge) testnet-edge)
( (
set -x set -x
NO_VALIDATOR_SANITY=1 \ ci/testnet-deploy.sh -p edge-testnet-solana-com -C ec2 -z us-west-1a \
ci/testnet-deploy.sh -p edge-testnet-solana-com -C ec2 -z us-west-1a \ -t "$CHANNEL_OR_TAG" -n 3 -c 0 -u -P -a eipalloc-0ccd4f2239886fa94 \
-t "$CHANNEL_OR_TAG" -n 3 -c 0 -u -P -a eipalloc-0ccd4f2239886fa94 \ ${maybeReuseLedger:+-r} \
${maybeReuseLedger:+-r} \ ${maybeDelete:+-D}
${maybeDelete:+-D}
) )
;; ;;
testnet-edge-perf) testnet-edge-perf)
@ -246,17 +245,15 @@ start() {
[[ -n $GCE_NODE_COUNT ]] || GCE_NODE_COUNT=40 [[ -n $GCE_NODE_COUNT ]] || GCE_NODE_COUNT=40
# shellcheck disable=SC2068 # shellcheck disable=SC2068
NO_VALIDATOR_SANITY=1 \ ci/testnet-deploy.sh -p beta-testnet-solana-com -C ec2 ${EC2_ZONE_ARGS[@]} \
ci/testnet-deploy.sh -p beta-testnet-solana-com -C ec2 ${EC2_ZONE_ARGS[@]} \ -t "$CHANNEL_OR_TAG" -n "$EC2_NODE_COUNT" -c 0 -s -u -P -a eipalloc-0f286cf8a0771ce35 \
-t "$CHANNEL_OR_TAG" -n "$EC2_NODE_COUNT" -c 0 -s -u -P -a eipalloc-0f286cf8a0771ce35 \ ${maybeReuseLedger:+-r} \
${maybeReuseLedger:+-r} \ ${maybeDelete:+-D}
${maybeDelete:+-D}
# shellcheck disable=SC2068 # shellcheck disable=SC2068
NO_VALIDATOR_SANITY=1 \ ci/testnet-deploy.sh -p beta-testnet-solana-com -C gce ${GCE_ZONE_ARGS[@]} \
ci/testnet-deploy.sh -p beta-testnet-solana-com -C gce ${GCE_ZONE_ARGS[@]} \ -t "$CHANNEL_OR_TAG" -n "$GCE_NODE_COUNT" -c 0 -x -P \
-t "$CHANNEL_OR_TAG" -n "$GCE_NODE_COUNT" -c 0 -x -P \ ${maybeReuseLedger:+-r} \
${maybeReuseLedger:+-r} \ ${maybeDelete:+-D}
${maybeDelete:+-D}
) )
;; ;;
testnet-beta-perf) testnet-beta-perf)