Skip to content

Commit

Permalink
Merge pull request #1192 from andyzhangx/sanity-azcopy-version
Browse files Browse the repository at this point in the history
test: always use latest azcopy version in sanity test
  • Loading branch information
andyzhangx authored Dec 27, 2023
2 parents ec7f382 + 56dc823 commit 92b4529
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions test/sanity/run-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ fi

azcopyPath="/usr/local/bin/azcopy"
if [ ! -f "$azcopyPath" ]; then
azcopyVersion=azcopy_linux_amd64_10.18.1
echo 'Downloading azcopy...'
wget -c https://azcopyvnext.azureedge.net/release20230420/$azcopyVersion.tar.gz
tar -zxvf $azcopyVersion.tar.gz
mv ./$azcopyVersion/azcopy /usr/local/bin/azcopy
rm -rf ./$azcopyVersion*
azcopyTarFile="azcopy.tar.gz"
wget -O $azcopyTarFile https://aka.ms/downloadazcopy-v10-linux
tar -zxvf $azcopyTarFile
mv ./azcopy*/azcopy /usr/local/bin/azcopy
rm -rf ./$azcopyTarFile
chmod +x /usr/local/bin/azcopy
fi

Expand Down

0 comments on commit 92b4529

Please sign in to comment.