-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpush.sh
executable file
·77 lines (70 loc) · 2.46 KB
/
push.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
#!/usr/bin/env bash
#
# Build Docker images for each Python version `x.y`;
# Tag them `x.y` and `x.y-date`;
# Add `x.y-date.sequence` tags if built more than once in a day;
# Finally, push them to Docker Hub.
#
# This script is purposed for maintainers only, not contributors.
#
# Usage:
# $ ./push.sh
set -e -o pipefail -u
image_name='metabrainz/python'
DOCKER_CMD=${DOCKER_CMD:-docker}
for cmd in grep jq sed wget
do
if ! type "${cmd}" &>/dev/null
then
echo >&2 "Error: ${cmd}: command not found"
exit 69 # EX_UNAVAILABLE
fi
done
# shellcheck disable=SC2207
remote_tags=($(wget -q \
https://registry.hub.docker.com/v2/repositories/${image_name}/tags?page_size=100 \
-O - | jq -r '.results[] | .name'))
for version in 2.7 '3.9-focal' 3.10 3.11 3.12 3.13
do
pushd "$(dirname "${BASH_SOURCE[0]}")/${version}/"
echo "Building ${version}..."
${DOCKER_CMD} build -t ${image_name}:${version} .
created=$(${DOCKER_CMD} inspect -f '{{.Created}}' ${image_name}:${version} \
| sed 's/^\(....\)-\(..\)-\(..\)T.*$/\1\2\3/')
date_version=${version}-${created}
if [[ " ${remote_tags[*]} " == *" ${date_version} "* ]]
then
tags_count=$(printf '%s\n' "${remote_tags[@]}" | grep -c -F "${date_version}")
if [[ ${tags_count} -eq 1 ]]
then
backup_version=${date_version}.0
echo "Backing up previous ${date_version} as ${backup_version}..."
if [[ " ${remote_tags[*]} " == *" ${backup_version} "* ]]
then
echo >&2 "Error: Backup tag ${backup_version} already exists"
exit 70 # EX_SOFTWARE
fi
${DOCKER_CMD} pull "${image_name}:${date_version}"
${DOCKER_CMD} tag "${image_name}:${date_version}" "${image_name}:${backup_version}"
${DOCKER_CMD} push "${image_name}:${backup_version}"
remote_tags+=("${backup_version}")
fi
sequence=$(printf '%s\n' "${remote_tags[@]}" | grep -c -F "${date_version}.")
sequence_version=${version}-${created}.${sequence}
if [[ " ${remote_tags[*]} " == *" ${sequence_version} "* ]]
then
echo >&2 "Error: Sequence tag ${sequence_version} already exists"
exit 70 # EX_SOFTWARE
fi
${DOCKER_CMD} tag "${image_name}:${version}" "${image_name}:${sequence_version}"
echo "Pushing ${sequence_version}..."
${DOCKER_CMD} push "${image_name}:${sequence_version}"
fi
${DOCKER_CMD} tag "${image_name}:${version}" "${image_name}:${date_version}"
echo "Pushing ${date_version}..."
${DOCKER_CMD} push "${image_name}:${date_version}"
echo "Pushing ${version}..."
${DOCKER_CMD} push ${image_name}:${version}
popd
done
echo "Done!"