mirror of
https://github.com/actions/runner-images.git
synced 2025-12-16 06:40:32 +00:00
* [macOS] Refactor the rest of the scripts * Return quotes to config tccdb script * Return quotes to config tccdb script * Revert some changes in ruby scripts * Revert some changes in ruby scripts * Revert some changes chrome script * check errors * check errors 01 * find errors in common-utils * find errors in edge install * find errors in edge install --------- Co-authored-by: Alexey Ayupov <“alexey.ayupov@akvelon.com”>
26 lines
907 B
Bash
26 lines
907 B
Bash
#!/bin/bash -e -o pipefail
|
|
################################################################################
|
|
## File: install-azcopy.sh
|
|
## Desc: Install AzCopy
|
|
################################################################################
|
|
|
|
source ~/utils/utils.sh
|
|
|
|
if is_Arm64; then
|
|
# latest is available by https://aka.ms/downloadazcopy-v10-mac-arm64
|
|
url="https://azcopyvnext.azureedge.net/releases/release-10.21.2-20231106/azcopy_darwin_arm64_10.21.2.zip"
|
|
else
|
|
# latest is available by https://aka.ms/downloadazcopy-v10-mac
|
|
url="https://azcopyvnext.azureedge.net/releases/release-10.21.2-20231106/azcopy_darwin_amd64_10.21.2.zip"
|
|
fi
|
|
|
|
# Install AzCopy
|
|
archive_path=$(download_with_retry ${url})
|
|
unzip -qq $archive_path -d /tmp/azcopy
|
|
extract_path=$(echo /tmp/azcopy/azcopy*)
|
|
cp $extract_path/azcopy /usr/local/bin/azcopy
|
|
chmod +x /usr/local/bin/azcopy
|
|
|
|
|
|
invoke_tests "Common" "AzCopy"
|