mirror of
https://github.com/actions/runner-images.git
synced 2025-12-15 14:17:22 +00:00
* remove azcopy 7 installation * Fix software report generator * fix variable name * add install helper
17 lines
627 B
Bash
17 lines
627 B
Bash
#!/bin/bash -e
|
|
################################################################################
|
|
## File: azcopy.sh
|
|
## Desc: Installs AzCopy
|
|
################################################################################
|
|
|
|
source $HELPER_SCRIPTS/install.sh
|
|
|
|
# Install AzCopy10
|
|
download_with_retries "https://aka.ms/downloadazcopy-v10-linux" "/tmp" "azcopy.tar.gz"
|
|
tar zxvf /tmp/azcopy.tar.gz --strip-components=1 -C /tmp
|
|
mv /tmp/azcopy /usr/local/bin/azcopy
|
|
chmod +x /usr/local/bin/azcopy
|
|
# Create azcopy 10 alias for backward compatibility
|
|
ln -sf /usr/local/bin/azcopy /usr/local/bin/azcopy10
|
|
|
|
invoke_tests "Tools" "azcopy" |