Fix testnet sanity check for beta testnet
This commit is contained in:
@ -134,7 +134,15 @@ sanity() {
|
|||||||
testnet-beta)
|
testnet-beta)
|
||||||
(
|
(
|
||||||
set -x
|
set -x
|
||||||
ci/testnet-sanity.sh beta-testnet-solana-com ec2 us-west-1a
|
EC2_ZONES=(sa-east-1a us-west-1a ap-northeast-2a eu-central-1a ca-central-1a)
|
||||||
|
for zone in "${EC2_ZONES[@]}"; do
|
||||||
|
ci/testnet-sanity.sh beta-testnet-solana-com ec2 "$zone" || return false
|
||||||
|
done
|
||||||
|
|
||||||
|
GCE_ZONES=(us-west1-b asia-east2-a europe-west4-a southamerica-east1-b us-east4-c)
|
||||||
|
for zone in "${GCE_ZONES[@]}"; do
|
||||||
|
ci/testnet-sanity.sh beta-testnet-solana-com gce "$zone" || return false
|
||||||
|
done
|
||||||
)
|
)
|
||||||
;;
|
;;
|
||||||
testnet-beta-perf)
|
testnet-beta-perf)
|
||||||
|
@ -48,6 +48,7 @@ shutdown() {
|
|||||||
exit $exitcode
|
exit $exitcode
|
||||||
}
|
}
|
||||||
rm -rf net/{log,-sanity}
|
rm -rf net/{log,-sanity}
|
||||||
|
rm -f net/config/config
|
||||||
trap shutdown EXIT INT
|
trap shutdown EXIT INT
|
||||||
|
|
||||||
set -x
|
set -x
|
||||||
|
Reference in New Issue
Block a user