Clean up log folding

This commit is contained in:
Michael Vines 2019-09-19 13:44:59 -07:00
parent 4c54245969
commit 05ada97d00
No known key found for this signature in database
GPG Key ID: 33F4FDEC4E0E88BD
1 changed files with 12 additions and 0 deletions

View File

@ -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}
)
;;