This repository has been archived by the owner on Nov 2, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.sh
executable file
·409 lines (351 loc) · 8.83 KB
/
build.sh
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
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
#!/usr/bin/env bash
usage() {
echo "$(basename "$0") TARGET [GITREF] [--push]"
}
get_latest_git_tag() {
git tag -l | sort -n | tail -1
}
is_latest_git_tag() {
[[ "$(get_latest_git_tag)" == "$1" ]]
}
get_current_git_commit() {
git log --pretty=format:'%h' -n 1
}
version_major() {
sed -rn 's/([0-9]+)\..*/\1/p' <<< "$1"
}
version_minor() {
sed -rn 's/([0-9]+)\.([0-9]+).*/\1\.\2/p' <<< "$1"
}
is_latest_git_minor() {
local major
major=$(version_major "$1")
[[ "$(git tag -l | grep '^'"${major}"'\.' | sort -n | tail -1)" == "$1" ]]
}
is_latest_git_patch() {
local minor
minor=$(version_minor "$1")
[[ "$(git tag -l | grep '^'"${minor}"'\.' | sort -n | tail -1)" == "$1" ]]
}
get_available_architectures() {
local image="$1"
local tag="${2:-latest}"
docker buildx imagetools inspect --raw "${image}:${tag}" | \
jq -r '.manifests[].platform | .os + "/" + .architecture + "/" + .variant' | \
sed 's#/$##' | sort
}
get_available_architectures_safe() {
# FIXME Statically disabling archs should not be necessary...
local all_archs
all_archs=$(get_available_architectures "$@")
if [[ "$OS" == "centos" ]]
then
# grep -vE 'ppc64le|s390x|arm/v6|arm/v7' <<< "$all_archs"
grep -vE 'arm/v6|arm/v7' <<< "$all_archs"
else
# grep -vE 'ppc64le|s390x' <<< "$all_archs"
echo "$all_archs"
fi
}
get_image_labels() {
local labels=("--label=built-by=pschmitt")
if [[ "$TRAVIS" == "true" ]]
then
labels+=("--label=build-type=travis")
elif [[ -n "$GITHUB_RUN_ID" ]]
then
labels+=("--label=build-type=github-actions" "--label=github-run-id=$GITHUB_RUN_ID")
else
labels+=("--label=build-type=manual" "--label=build-host=$HOSTNAME")
fi
echo "${labels[@]}"
}
get_tag_args() {
local images=("$@")
local tag_args=()
for img in "${images[@]}"
do
tag_args+=("--tag $img")
done
echo "${tag_args[@]}"
}
git_setup() {
local build_dir="$1"
local git_ref="$2"
if [[ -d "$build_dir" ]]
then
cd "$build_dir" || exit 9
git clean -d -f -f
git reset --hard HEAD
git checkout master
git pull
else
git clone https://github.com/zabbix/zabbix-docker "$build_dir"
cd "$build_dir" || exit 9
fi
if [[ -z "$git_ref" ]]
then
git_ref="$(get_latest_git_tag)"
fi
git checkout "$git_ref" > /dev/null 2>&1
# echo "$git_ref"
}
array_join() {
local IFS="$1"
shift
echo "$*"
}
get_image_names() {
local org=zabbixmultiarch
local project_prefix=zabbix
local project="$1"
local os="$2"
local git_ref="$3"
local tag
local images=()
if [[ "$git_ref" == "master" ]]
then
tag=master
else
tag="$git_ref"
fi
if is_latest_git_tag "$git_ref"
then
# latest tag defaults to alpine-latest
if [[ "$os" == "alpine" ]]
then
images+=("${org}/${project_prefix}-${project}:latest")
fi
images+=(
"${org}/${project_prefix}-${project}:${os}-latest"
"${org}/${project_prefix}-${project}-${os}:latest"
)
fi
if is_latest_git_minor "$git_ref"
then
local major
major=$(version_major "$git_ref")
# latest tag defaults to alpine-latest
if [[ "$os" == "alpine" ]]
then
images+=("${org}/${project_prefix}-${project}:${major}-latest")
fi
images+=(
"${org}/${project_prefix}-${project}:${os}-${major}-latest"
"${org}/${project_prefix}-${project}-${os}:${major}-latest"
)
fi
if is_latest_git_patch "$git_ref"
then
local minor
minor=$(version_minor "$git_ref")
# latest tag defaults to alpine-latest
if [[ "$os" == "alpine" ]]
then
images+=("${org}/${project_prefix}-${project}:${minor}-latest")
fi
images+=(
"${org}/${project_prefix}-${project}:${os}-${minor}-latest"
"${org}/${project_prefix}-${project}-${os}:${minor}-latest"
)
fi
images+=(
"${org}/${project_prefix}-${project}:${os}-$(get_current_git_commit)"
"${org}/${project_prefix}-${project}:${os}-${tag}"
"${org}/${project_prefix}-${project}-${os}:${tag}"
)
echo "${images[@]}"
}
_buildx() {
# shellcheck disable=2206
local platforms=($1)
# shellcheck disable=2206
local labels=($2)
# shellcheck disable=2206
local tag_args=($3)
# shellcheck disable=2046,2068
if [[ -n "$DRYRUN" ]]
then
echo docker buildx build \
--platform "$(array_join "," "${platforms[@]}")" \
--output "type=image,push=${PUSH_IMAGE}" \
--no-cache \
$(array_join " " "${labels[@]}") \
${tag_args[@]} .
else
docker buildx build \
--platform "$(array_join "," "${platforms[@]}")" \
--output "type=image,push=${PUSH_IMAGE}" \
--no-cache \
$(array_join " " "${labels[@]}") \
${tag_args[@]} .
res="$?"
if [[ "$res" == "0" ]]
then
echo "✔️ BUILD succeeded"
echo "The following architectures have been pushed:"
for platform in "${platforms[@]}"
do
echo " - $platform"
done
else
echo "❌ BUILD FAILED" >&2
fi
return "$res"
fi
}
array_pop() {
local val="$1"
shift
local array=("$@")
local new_array=()
local _tmp
for _tmp in "${array[@]}"
do
if [[ "$_tmp" != "$val" ]]
then
new_array+=("$_tmp")
fi
done
echo "${new_array[@]}"
}
disable_platforms() {
# shellcheck disable=2206
local del=($1)
shift
local platforms=("$@")
local new_platforms=("$@")
for item in "${del[@]}"
do
# shellcheck disable=2207
new_platforms=($(array_pop "$item" "${new_platforms[@]}"))
done
echo "${new_platforms[@]}"
}
buildx_retry() {
# shellcheck disable=2206
local platforms=($1)
# shellcheck disable=2206
local labels=($2)
# shellcheck disable=2206
local tag_args=($3)
local del
# TODO Detect which architectures failed and retry build without them
# TODO Don't retry if disable_platforms results in the same array
# Step 1: all platforms
if ! _buildx "${platforms[*]}" "${labels[*]}" "${tag_args[*]}"
then
if [[ -n "$NO_FALLBACK" ]]
then
echo "NO_FALLBACK is set: Skip fallback mechanism."
return 7
fi
# Step 2: Disable i386, ppc64le and s390x
del=(linux/386 linux/ppc64le linux/s390x)
# shellcheck disable=2207
platforms=($(disable_platforms "${del[*]}" "${platforms[@]}"))
if ! _buildx "${platforms[*]}" "${labels[*]}" "${tag_args[*]}"
then
# Step 3: Disable armv6
del=(linux/arm/v6)
# shellcheck disable=2207
platforms=($(disable_platforms "${del[*]}" "${platforms[@]}"))
if ! _buildx "${platforms[*]}" "${labels[*]}" "${tag_args[*]}"
then
# Step 4: Disable armv7
del=(linux/arm/v7)
# shellcheck disable=2207
platforms=($(disable_platforms "${del[*]}" "${platforms[@]}"))
if ! _buildx "${platforms[*]}" "${labels[*]}" "${tag_args[*]}"
then
# Step 5: Disable aarch64
del=(linux/arm64/v8)
# shellcheck disable=2207
platforms=($(disable_platforms "${del[*]}" "${platforms[@]}"))
_buildx "${platforms[*]}" "${labels[*]}" "${tag_args[*]}"
fi
fi
fi
fi
}
build_project() {
local project="$1"
local os="$2"
local git_ref="$3"
local base_image
local base_tag
local images
local platforms
local labels
local tag_args
cd "$(readlink -f "$(dirname "$0")")" || exit 9
local build_dir="${PWD}/data"
git_setup "$build_dir" "$git_ref" > /dev/null 2>&1
if [[ -z "$git_ref" ]]
then
git_ref="$(get_latest_git_tag)"
fi
if ! cd "${build_dir}/${project}/${os}" 2> /dev/null
then
echo "No such project/OS combination: ${project}/${os}" >&2
exit 4
fi
# shellcheck disable=2207
images=($(get_image_names "$project" "$os" "$git_ref"))
echo "Building ${images[*]}"
read -r base_image base_tag <<< \
"$(sed -nr 's/^FROM\s+([^:]+):?((\w+).*)\s*$/\1 \3/p' Dockerfile | head -1)"
echo "Upstream base image: $base_image (tag: $base_tag)"
# shellcheck disable=2207
platforms=($(get_available_architectures "$base_image" "$base_tag"))
# Set build labels
# shellcheck disable=2207
labels=($(get_image_labels))
# shellcheck disable=2207
tag_args=($(get_tag_args "${images[@]}"))
buildx_retry "${platforms[*]}" "${labels[*]}" "${tag_args[*]}"
}
if [[ "${BASH_SOURCE[0]}" == "${0}" ]]
then
set -x
if [[ "$#" -lt 1 ]]
then
usage
exit 2
fi
case "$1" in
-h|--help|h|help)
usage
exit 0
;;
esac
TARGET="$1"
# Defaults
PUSH_IMAGE=false
case "$2" in
-f|--force|-p|--push)
PUSH_IMAGE=true
;;
*)
GIT_REF="$2"
case "$3" in
-f|--force|-p|--push)
PUSH_IMAGE=true
;;
esac
;;
esac
if ! docker buildx version >/dev/null
then
echo "buildx is not available" >&2
exit 99
fi
read -r PROJECT OS <<< "$(sed -r 's/(.+)-(.+)/\1 \2/' <<< "$TARGET")"
# Default to alpine
if [[ -z "$OS" ]]
then
OS=alpine
fi
build_project "$PROJECT" "$OS" "$GIT_REF"
fi
# vim set et ts=2 sw=2 :