Change testnet automation to use TAR instead of snap (#1809)

This commit is contained in:
Pankaj Garg
2018-11-13 13:33:15 -08:00
committed by GitHub
parent 6335be803c
commit 66e9d30fda
3 changed files with 23 additions and 22 deletions

View File

@@ -4,8 +4,8 @@ set -e
cd "$(dirname "$0")/.."
if [[ -z $USE_PREBUILT_CHANNEL_TARBALL ]]; then
echo --- downloading snap from build artifacts
buildkite-agent artifact download "solana_*.snap" .
echo --- downloading tar from build artifacts
buildkite-agent artifact download "solana*.tar.bz2" .
fi
# shellcheck disable=SC1091
@@ -35,7 +35,7 @@ launchTestnet() {
if [[ -n $USE_PREBUILT_CHANNEL_TARBALL ]]; then
net/net.sh start -o noValidatorSanity -t "$CHANNEL"
else
net/net.sh start -o noValidatorSanity -S solana_*.snap
net/net.sh start -o noValidatorSanity -T solana*.tar.bz2
fi
echo --- wait "$ITERATION_WAIT" seconds to complete test