mirror of
https://github.com/actions/runner-images.git
synced 2025-12-11 11:37:00 +00:00
19 lines
747 B
Bash
19 lines
747 B
Bash
#!/bin/bash -e
|
|
################################################################################
|
|
## File: aliyun-cli.sh
|
|
## Desc: Installs Alibaba Cloud CLI
|
|
################################################################################
|
|
|
|
# Install Alibaba Cloud CLI
|
|
URL=$(curl -s https://api.github.com/repos/aliyun/aliyun-cli/releases/latest | jq -r '.assets[].browser_download_url | select(contains("aliyun-cli-linux"))')
|
|
wget -P /tmp $URL
|
|
tar xzvf /tmp/aliyun-cli-linux-*-amd64.tgz
|
|
mv aliyun /usr/local/bin
|
|
|
|
# Run tests to determine that the software installed as expected
|
|
echo "Testing to make sure that script performed as expected, and basic scenarios work"
|
|
if ! command -v aliyun ; then
|
|
echo "aliyun was not installed"
|
|
exit 1
|
|
fi
|