forked from paketo-buildpacks/python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtools.sh
More file actions
229 lines (178 loc) · 4.37 KB
/
tools.sh
File metadata and controls
229 lines (178 loc) · 4.37 KB
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
#!/usr/bin/env bash
set -eu
set -o pipefail
# shellcheck source=SCRIPTDIR/print.sh
source "$(dirname "${BASH_SOURCE[0]}")/print.sh"
function util::tools::os() {
case "$(uname)" in
"Darwin")
echo "${1:-darwin}"
;;
"Linux")
echo "linux"
;;
*)
util::print::error "Unknown OS \"$(uname)\""
exit 1
esac
}
function util::tools::arch() {
case "$(uname -m)" in
arm64|aarch64)
echo "arm64"
;;
amd64|x86_64)
if [[ "${1:-}" == "--blank-amd64" ]]; then
echo ""
else
echo "amd64"
fi
;;
*)
util::print::error "Unknown Architecture \"$(uname -m)\""
exit 1
esac
}
function util::tools::path::export() {
local dir
dir="${1}"
if ! echo "${PATH}" | grep -q "${dir}"; then
PATH="${dir}:$PATH"
export PATH
fi
}
function util::tools::jam::install() {
local dir token
token=""
while [[ "${#}" != 0 ]]; do
case "${1}" in
--directory)
dir="${2}"
shift 2
;;
--token)
token="${2}"
shift 2
;;
*)
util::print::error "unknown argument \"${1}\""
esac
done
mkdir -p "${dir}"
util::tools::path::export "${dir}"
if [[ ! -f "${dir}/jam" ]]; then
local version curl_args os arch
version="$(jq -r .jam "$(dirname "${BASH_SOURCE[0]}")/tools.json")"
curl_args=(
"--fail"
"--silent"
"--location"
"--output" "${dir}/jam"
)
if [[ "${token}" != "" ]]; then
curl_args+=("--header" "Authorization: Token ${token}")
fi
util::print::title "Installing jam ${version}"
os=$(util::tools::os)
arch=$(util::tools::arch)
curl "https://github.com/paketo-buildpacks/jam/releases/download/${version}/jam-${os}-${arch}" \
"${curl_args[@]}"
chmod +x "${dir}/jam"
else
util::print::info "Using $("${dir}"/jam version)"
fi
}
function util::tools::pack::install() {
local dir token
token=""
while [[ "${#}" != 0 ]]; do
case "${1}" in
--directory)
dir="${2}"
shift 2
;;
--token)
token="${2}"
shift 2
;;
*)
util::print::error "unknown argument \"${1}\""
esac
done
mkdir -p "${dir}"
util::tools::path::export "${dir}"
if [[ ! -f "${dir}/pack" ]]; then
local version curl_args os arch
version="$(jq -r .pack "$(dirname "${BASH_SOURCE[0]}")/tools.json")"
tmp_location="/tmp/pack.tgz"
curl_args=(
"--fail"
"--silent"
"--location"
"--output" "${tmp_location}"
)
if [[ "${token}" != "" ]]; then
curl_args+=("--header" "Authorization: Token ${token}")
fi
util::print::title "Installing pack ${version}"
os=$(util::tools::os macos)
arch=$(util::tools::arch --blank-amd64)
curl "https://github.com/buildpacks/pack/releases/download/${version}/pack-${version}-${os}${arch:+-$arch}.tgz" \
"${curl_args[@]}"
tar xzf "${tmp_location}" -C "${dir}"
chmod +x "${dir}/pack"
rm "${tmp_location}"
else
util::print::info "Using pack $("${dir}"/pack version)"
fi
}
function util::tools::yj::install() {
local dir token
token=""
while [[ "${#}" != 0 ]]; do
case "${1}" in
--directory)
dir="${2}"
shift 2
;;
--token)
token="${2}"
shift 2
;;
*)
util::print::error "unknown argument \"${1}\""
esac
done
mkdir -p "${dir}"
util::tools::path::export "${dir}"
if [[ ! -f "${dir}/yj" ]]; then
local version curl_args os arch
version="$(jq -r .yj "$(dirname "${BASH_SOURCE[0]}")/tools.json")"
curl_args=(
"--fail"
"--silent"
"--location"
"--output" "${dir}/yj"
)
if [[ "${token}" != "" ]]; then
curl_args+=("--header" "Authorization: Token ${token}")
fi
util::print::title "Installing yj ${version}"
os=$(util::tools::os macos)
arch=$(util::tools::arch)
curl "https://github.com/sclevine/yj/releases/download/${version}/yj-${os}-${arch}" \
"${curl_args[@]}"
chmod +x "${dir}/yj"
else
util::print::info "Using yj $("${dir}"/yj -v)"
fi
}
function util::tools::tests::checkfocus() {
testout="${1}"
if grep -q 'Focused: [1-9]' "${testout}"; then
echo "Detected Focused Test(s) - setting exit code to 197"
rm "${testout}"
util::print::success "** GO Test Succeeded **" 197
fi
rm "${testout}"
}