From 05ada97d006d8bd1e331b1b061ec07a68710a827 Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Thu, 19 Sep 2019 13:44:59 -0700 Subject: [PATCH] Clean up log folding --- ci/testnet-manager.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/ci/testnet-manager.sh b/ci/testnet-manager.sh index eb95428acc..7cce5c144b 100755 --- a/ci/testnet-manager.sh +++ b/ci/testnet-manager.sh @@ -219,6 +219,10 @@ sanity() { NO_INSTALL_CHECK=1 \ NO_VALIDATOR_SANITY=1 \ ci/testnet-sanity.sh edge-testnet-solana-com gce us-west1-b + ) + ( + echo "--- net.sh restart" + set -x time net/net.sh restart --skip-setup --deploy-if-newer -t "$CHANNEL_OR_TAG" ) ;; @@ -236,6 +240,10 @@ sanity() { NO_INSTALL_CHECK=1 \ NO_VALIDATOR_SANITY=1 \ ci/testnet-sanity.sh beta-testnet-solana-com gce us-west1-b + ) + ( + echo "--- net.sh restart" + set -x time net/net.sh restart --skip-setup --deploy-if-newer -t "$CHANNEL_OR_TAG" ) ;; @@ -378,6 +386,10 @@ deploy() { ${skipStart:+-s} \ ${maybeStop:+-S} \ ${maybeDelete:+-D} + ) + ( + echo "--- net.sh update" + set -x time net/net.sh update -t "$CHANNEL_OR_TAG" --platform\ {linux,osx,windows} ) ;;