Avoid unnecessary shellcheck directives

This commit is contained in:
Michael Vines
2018-12-22 11:57:47 -08:00
parent a1759aed19
commit c3a74e5e63

View File

@ -114,68 +114,56 @@ sanity() {
echo "--- sanity $TESTNET" echo "--- sanity $TESTNET"
case $TESTNET in case $TESTNET in
testnet-edge) testnet-edge)
# shellcheck disable=2030
# shellcheck disable=2031
( (
set -ex set -x
export NO_LEDGER_VERIFY=1 NO_LEDGER_VERIFY=1 \
export NO_VALIDATOR_SANITY=1 NO_VALIDATOR_SANITY=1 \
ci/testnet-sanity.sh edge-testnet-solana-com ec2 us-west-1a ci/testnet-sanity.sh edge-testnet-solana-com ec2 us-west-1a
) )
;; ;;
testnet-edge-perf) testnet-edge-perf)
# shellcheck disable=2030
# shellcheck disable=2031
( (
set -ex set -x
export REJECT_EXTRA_NODES=1 REJECT_EXTRA_NODES=1 \
export NO_LEDGER_VERIFY=1 NO_LEDGER_VERIFY=1 \
export NO_VALIDATOR_SANITY=1 NO_VALIDATOR_SANITY=1 \
ci/testnet-sanity.sh edge-perf-testnet-solana-com ec2 us-west-2b ci/testnet-sanity.sh edge-perf-testnet-solana-com ec2 us-west-2b
) )
;; ;;
testnet-beta) testnet-beta)
# shellcheck disable=2030
# shellcheck disable=2031
( (
set -ex set -x
export NO_LEDGER_VERIFY=1 NO_LEDGER_VERIFY=1 \
export NO_VALIDATOR_SANITY=1 NO_VALIDATOR_SANITY=1 \
ci/testnet-sanity.sh beta-testnet-solana-com ec2 us-west-1a ci/testnet-sanity.sh beta-testnet-solana-com ec2 us-west-1a
) )
;; ;;
testnet-beta-perf) testnet-beta-perf)
# shellcheck disable=2030
# shellcheck disable=2031
( (
set -ex set -x
export REJECT_EXTRA_NODES=1 REJECT_EXTRA_NODES=1 \
export NO_LEDGER_VERIFY=1 NO_LEDGER_VERIFY=1 \
export NO_VALIDATOR_SANITY=1 NO_VALIDATOR_SANITY=1 \
ci/testnet-sanity.sh beta-perf-testnet-solana-com ec2 us-west-2b ci/testnet-sanity.sh beta-perf-testnet-solana-com ec2 us-west-2b
) )
;; ;;
testnet) testnet)
# shellcheck disable=2030
# shellcheck disable=2031
( (
set -ex set -x
export NO_LEDGER_VERIFY=1 NO_LEDGER_VERIFY=1 \
export NO_VALIDATOR_SANITY=1 NO_VALIDATOR_SANITY=1 \
ci/testnet-sanity.sh testnet-solana-com ec2 us-west-1a
#ci/testnet-sanity.sh testnet-solana-com gce us-east1-c #ci/testnet-sanity.sh testnet-solana-com gce us-east1-c
ci/testnet-sanity.sh testnet-solana-com ec2 us-west-1a
) )
;; ;;
testnet-perf) testnet-perf)
# shellcheck disable=2030
# shellcheck disable=2031
( (
set -ex set -x
export REJECT_EXTRA_NODES=1 REJECT_EXTRA_NODES=1 \
export NO_LEDGER_VERIFY=1 NO_LEDGER_VERIFY=1 \
export NO_VALIDATOR_SANITY=1 NO_VALIDATOR_SANITY=1 \
ci/testnet-sanity.sh perf-testnet-solana-com gce us-west1-b
#ci/testnet-sanity.sh perf-testnet-solana-com ec2 us-east-1a #ci/testnet-sanity.sh perf-testnet-solana-com ec2 us-east-1a
ci/testnet-sanity.sh perf-testnet-solana-com gce us-west1-b
) )
;; ;;
*) *)
@ -196,89 +184,77 @@ start() {
case $TESTNET in case $TESTNET in
testnet-edge) testnet-edge)
# shellcheck disable=2030
# shellcheck disable=2031
( (
set -ex set -x
export NO_LEDGER_VERIFY=1 NO_LEDGER_VERIFY=1 \
export NO_VALIDATOR_SANITY=1 NO_VALIDATOR_SANITY=1 \
ci/testnet-deploy.sh edge-testnet-solana-com ec2 us-west-1a \ ci/testnet-deploy.sh edge-testnet-solana-com ec2 us-west-1a \
-t "$CHANNEL_OR_TAG" -n 3 -c 0 -P -a eipalloc-0ccd4f2239886fa94 \ -t "$CHANNEL_OR_TAG" -n 3 -c 0 -P -a eipalloc-0ccd4f2239886fa94 \
${maybeDelete:+-d} ${maybeDelete:+-d}
) )
;; ;;
testnet-edge-perf) testnet-edge-perf)
# shellcheck disable=2030
# shellcheck disable=2031
( (
set -ex set -x
export NO_LEDGER_VERIFY=1 NO_LEDGER_VERIFY=1 \
export NO_VALIDATOR_SANITY=1 NO_VALIDATOR_SANITY=1 \
ci/testnet-deploy.sh edge-perf-testnet-solana-com ec2 us-west-2b \ ci/testnet-deploy.sh edge-perf-testnet-solana-com ec2 us-west-2b \
-g -t "$CHANNEL_OR_TAG" -c 2 \ -g -t "$CHANNEL_OR_TAG" -c 2 \
-b \ -b \
${maybeDelete:+-d} ${maybeDelete:+-d}
) )
;; ;;
testnet-beta) testnet-beta)
# shellcheck disable=2030
# shellcheck disable=2031
( (
set -ex set -x
export NO_LEDGER_VERIFY=1 NO_LEDGER_VERIFY=1 \
export NO_VALIDATOR_SANITY=1 NO_VALIDATOR_SANITY=1 \
ci/testnet-deploy.sh beta-testnet-solana-com ec2 us-west-1a \ ci/testnet-deploy.sh beta-testnet-solana-com ec2 us-west-1a \
-t "$CHANNEL_OR_TAG" -n 3 -c 0 -P -a eipalloc-0f286cf8a0771ce35 \ -t "$CHANNEL_OR_TAG" -n 3 -c 0 -P -a eipalloc-0f286cf8a0771ce35 \
-b \ -b \
${maybeDelete:+-d} ${maybeDelete:+-d}
) )
;; ;;
testnet-beta-perf) testnet-beta-perf)
# shellcheck disable=2030
# shellcheck disable=2031
( (
set -ex set -x
export NO_LEDGER_VERIFY=1 NO_LEDGER_VERIFY=1 \
export NO_VALIDATOR_SANITY=1 NO_VALIDATOR_SANITY=1 \
ci/testnet-deploy.sh beta-perf-testnet-solana-com ec2 us-west-2b \ ci/testnet-deploy.sh beta-perf-testnet-solana-com ec2 us-west-2b \
-g -t "$CHANNEL_OR_TAG" -c 2 \ -g -t "$CHANNEL_OR_TAG" -c 2 \
-b \ -b \
${maybeDelete:+-d} ${maybeDelete:+-d}
) )
;; ;;
testnet) testnet)
# shellcheck disable=2030
# shellcheck disable=2031
( (
set -ex set -x
export NO_LEDGER_VERIFY=1 NO_LEDGER_VERIFY=1 \
export NO_VALIDATOR_SANITY=1 NO_VALIDATOR_SANITY=1 \
#ci/testnet-deploy.sh testnet-solana-com gce us-east1-c \ ci/testnet-deploy.sh testnet-solana-com ec2 us-west-1a \
# -s "$CHANNEL_OR_TAG" -n 3 -c 0 -P -a testnet-solana-com \ -t "$CHANNEL_OR_TAG" -n 3 -c 0 -P -a eipalloc-0fa502bf95f6f18b2 \
# ${maybeDelete:+-d} -b \
ci/testnet-deploy.sh testnet-solana-com ec2 us-west-1a \ ${maybeDelete:+-d}
-t "$CHANNEL_OR_TAG" -n 3 -c 0 -P -a eipalloc-0fa502bf95f6f18b2 \ #ci/testnet-deploy.sh testnet-solana-com gce us-east1-c \
-b \ # -s "$CHANNEL_OR_TAG" -n 3 -c 0 -P -a testnet-solana-com \
${maybeDelete:+-d} # ${maybeDelete:+-d}
) )
;; ;;
testnet-perf) testnet-perf)
# shellcheck disable=2030
# shellcheck disable=2031
( (
set -ex set -x
export NO_LEDGER_VERIFY=1 NO_LEDGER_VERIFY=1 \
export NO_VALIDATOR_SANITY=1 NO_VALIDATOR_SANITY=1 \
ci/testnet-deploy.sh perf-testnet-solana-com gce us-west1-b \ ci/testnet-deploy.sh perf-testnet-solana-com gce us-west1-b \
-G "n1-standard-16 --accelerator count=2,type=nvidia-tesla-v100" \ -G "n1-standard-16 --accelerator count=2,type=nvidia-tesla-v100" \
-t "$CHANNEL_OR_TAG" -c 2 \ -t "$CHANNEL_OR_TAG" -c 2 \
-b \ -b \
-d pd-ssd \ -d pd-ssd \
${maybeDelete:+-d} ${maybeDelete:+-d}
#ci/testnet-deploy.sh perf-testnet-solana-com ec2 us-east-1a \ #ci/testnet-deploy.sh perf-testnet-solana-com ec2 us-east-1a \
# -g \ # -g \
# -t "$CHANNEL_OR_TAG" -c 2 \ # -t "$CHANNEL_OR_TAG" -c 2 \
# ${maybeDelete:+-d} # ${maybeDelete:+-d}
) )
;; ;;
*) *)