Disable testnet-sanity ledger verification, too slow
This commit is contained in:
parent
6bef16a6a1
commit
beb8c7914e
|
@ -127,6 +127,7 @@ sanity() {
|
||||||
testnet-edge)
|
testnet-edge)
|
||||||
(
|
(
|
||||||
set -x
|
set -x
|
||||||
|
NO_LEDGER_VERIFY=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
|
||||||
)
|
)
|
||||||
;;
|
;;
|
||||||
|
@ -145,8 +146,10 @@ sanity() {
|
||||||
|
|
||||||
ok=true
|
ok=true
|
||||||
if [[ -n $EC2_NODE_COUNT ]]; then
|
if [[ -n $EC2_NODE_COUNT ]]; then
|
||||||
|
NO_LEDGER_VERIFY=1 \
|
||||||
ci/testnet-sanity.sh beta-testnet-solana-com ec2 "${EC2_ZONES[0]}" || ok=false
|
ci/testnet-sanity.sh beta-testnet-solana-com ec2 "${EC2_ZONES[0]}" || ok=false
|
||||||
elif [[ -n $GCE_NODE_COUNT ]]; then
|
elif [[ -n $GCE_NODE_COUNT ]]; then
|
||||||
|
NO_LEDGER_VERIFY=1 \
|
||||||
ci/testnet-sanity.sh beta-testnet-solana-com gce "${GCE_ZONES[0]}" || ok=false
|
ci/testnet-sanity.sh beta-testnet-solana-com gce "${GCE_ZONES[0]}" || ok=false
|
||||||
else
|
else
|
||||||
echo "Error: no EC2 or GCE nodes"
|
echo "Error: no EC2 or GCE nodes"
|
||||||
|
@ -167,6 +170,7 @@ sanity() {
|
||||||
testnet)
|
testnet)
|
||||||
(
|
(
|
||||||
set -x
|
set -x
|
||||||
|
NO_LEDGER_VERIFY=1 \
|
||||||
ci/testnet-sanity.sh testnet-solana-com ec2 us-west-1a
|
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
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue