Skip to content

Commit

Permalink
Merge pull request #1658 from k8s-infra-cherrypick-robot/cherry-pick-…
Browse files Browse the repository at this point in the history
…1645-to-release-1.29

[release-1.29] test: always use latest azcopy version in sanity test
  • Loading branch information
andyzhangx committed Jan 11, 2024
2 parents c95cf12 + 2130548 commit 23b751a
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 @@ -38,12 +38,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 23b751a

Please sign in to comment.