From 8b99e6dfbef4135db399527d02834f942e93772f Mon Sep 17 00:00:00 2001 From: Dan Albert Date: Wed, 18 Sep 2019 12:28:13 -0700 Subject: [PATCH] Narrow wildcard matching for solana tarball (#5950) --- ci/testnet-automation.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/testnet-automation.sh b/ci/testnet-automation.sh index d998494739..e1434877c6 100755 --- a/ci/testnet-automation.sh +++ b/ci/testnet-automation.sh @@ -5,7 +5,7 @@ cd "$(dirname "$0")/.." if [[ -z $USE_PREBUILT_CHANNEL_TARBALL ]]; then echo --- downloading tar from build artifacts - buildkite-agent artifact download "solana*.tar.bz2" . + buildkite-agent artifact download "solana-release*.tar.bz2" . fi # shellcheck disable=SC1091 @@ -41,7 +41,7 @@ launchTestnet() { if [[ -n $USE_PREBUILT_CHANNEL_TARBALL ]]; then net/net.sh start -f "cuda" -o noValidatorSanity -t "$CHANNEL" else - net/net.sh start -f "cuda" -o noValidatorSanity -T solana*.tar.bz2 + net/net.sh start -f "cuda" -o noValidatorSanity -T solana-release*.tar.bz2 fi echo --- wait "$ITERATION_WAIT" seconds to complete test