-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathutils.bash
executable file
·100 lines (77 loc) · 2.21 KB
/
utils.bash
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
#!/usr/bin/env bash
set -euo pipefail
GH_REPO="https://github.com/grafana/mimir"
TOOL_NAME="mimirtool"
TOOL_TEST="mimirtool version"
fail() {
echo -e "asdf-$TOOL_NAME: $*"
exit 1
}
curl_opts=(-fsSL)
# NOTE: You might want to remove this if mimirtool is not hosted on GitHub releases.
if [ -n "${GITHUB_API_TOKEN:-}" ]; then
curl_opts=("${curl_opts[@]}" -H "Authorization: token $GITHUB_API_TOKEN")
fi
sort_versions() {
sed 'h; s/[+-]/./g; s/.p\([[:digit:]]\)/.z\1/; s/$/.z/; G; s/\n/ /' |
LC_ALL=C sort -t. -k 1,1 -k 2,2n -k 3,3n -k 4,4n -k 5,5n | awk '{print $2}'
}
list_github_tags() {
git ls-remote --tags --refs "$GH_REPO" |
grep -o 'refs/tags/.*' | cut -d/ -f3- |
sed 's/^v//' # NOTE: You might want to adapt this sed to remove non-version strings from tags
}
list_all_versions() {
# Change this function if mimirtool has other means of determining installable versions.
list_github_tags | grep '^mimir-[0-9]\+[.][0-9]\+[.][0-9]' | sed 's/^mimir-//'
}
get_arch() {
local machine
machine=$(uname -m)
if [[ "$machine" =~ "x86_64" ]]; then
echo "amd64"
return
fi
echo $machine
}
get_platform() {
local uname
uname=$(uname)
if [[ "$uname" =~ "Darwin" ]]; then
echo "darwin"
return
fi
if [[ "$uname" =~ "Linux" ]]; then
echo "linux"
return
fi
fail "Unknown platform"
}
download_release() {
local version filename url
version="$1"
filename="$2"
url="$GH_REPO/releases/download/mimir-$version/mimirtool-$(get_platform)-$(get_arch)"
echo "* Downloading $TOOL_NAME release $version..."
curl "${curl_opts[@]}" -o "$filename" -C - "$url" || fail "Could not download $url"
chmod +x "$filename"
}
install_version() {
local install_type="$1"
local version="$2"
local install_path="${3%/bin}/bin"
if [ "$install_type" != "version" ]; then
fail "asdf-mimirtool supports release installs only"
fi
(
mkdir -p "$install_path"
cp -r "$ASDF_DOWNLOAD_PATH"/* "$install_path"
local tool_cmd
tool_cmd="$(echo "$TOOL_TEST" | cut -d' ' -f1)"
test -x "$install_path/$tool_cmd" || fail "Expected $install_path/$tool_cmd to be executable."
echo "$TOOL_NAME $version installation was successful!"
) || (
rm -rf "$install_path"
fail "An error occurred while installing $TOOL_NAME $version."
)
}