forked from apache/flink-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
generate-stackbrew-library.sh
executable file
·93 lines (76 loc) · 2.52 KB
/
generate-stackbrew-library.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
#!/usr/bin/env bash
# This script generates a manifest compatibile with the expectations set forth
# by docker-library/official-images.
#
# It is not compatible with the version of Bash currently shipped with OS X due
# to the use of features introduced in Bash 4.
set -eu
self="$(basename "$BASH_SOURCE")"
cd "$(dirname "$(readlink -f "$BASH_SOURCE")")"
# get the most recent commit which modified any of "$@"
fileCommit() {
git log -1 --format='format:%H' HEAD -- "$@"
}
# get the most recent commit which modified "$1/Dockerfile" or any file COPY'd from "$1/Dockerfile"
dirCommit() {
local dir="$1"; shift
(
cd "$dir"
fileCommit \
Dockerfile \
$(git show HEAD:./Dockerfile | awk '
toupper($1) == "COPY" {
for (i = 2; i < NF; i++) {
print $i
}
}
')
)
}
# Inputs:
# - tags: comma-seprated list of image tags
# - latestVersion: latest version
# Output: comma-separated list of tags with "latest" removed if not latest version
pruneTags() {
local tags=$1
local latestVersion=$2
if [[ $tags =~ $latestVersion ]]; then
# tags contains latest version. keep "latest" tag
echo $tags
else
# remove "latest" and any "scala_" tag, unless it is the latest version
# the "scala_" tag has a similar semantic as the "latest" tag in docker registries.
echo $tags | sed -E 's|, (scala\|latest)[-_.[:alnum:]]*||g'
fi
}
extractValue() {
local key="$1"
local file="$2"
local line=$(cat $file | grep "$key:")
echo $line | sed "s/${key}: //g"
}
# get latest flink version
latest_version=`ls -1a | grep -E "[0-9]+.[0-9]+" | sort -V -r | head -n 1`
cat <<-EOH
# this file is generated via https://github.com/apache/flink-docker/blob/$(fileCommit "$self")/$self
Maintainers: Patrick Lucas <[email protected]> (@patricklucas),
Ismaël Mejía <[email protected]> (@iemejia)
GitRepo: https://github.com/apache/flink-docker.git
EOH
for dockerfile in $(find . -name "Dockerfile"); do
dir=$(dirname $dockerfile)
commit="$(dirCommit "$dir")"
metadata="$dir/release.metadata"
architectures=$(extractValue "Architectures" $metadata)
tags=$(extractValue "Tags" $metadata)
tags=$(pruneTags "$tags" $latest_version)
# newline
echo
# The tabs here are necessary for the heredoc to work right
cat <<-EOE
Tags: $tags
Architectures: $architectures
GitCommit: $commit
Directory: $dir
EOE
done