This repository has been archived by the owner on Dec 10, 2023. It is now read-only.
forked from nodejs/docker-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
generate-stackbrew-library.sh
executable file
·76 lines (59 loc) · 1.96 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
#!/bin/bash
set -e
hash git 2>/dev/null || { echo >&2 "git not found, exiting."; }
# Used dynamically: print "$array_" $1
# shellcheck disable=SC2034
array_4_8='4 argon';
# shellcheck disable=SC2034
array_6_11='6 boron';
# shellcheck disable=SC2034
array_7_10='7';
# shellcheck disable=SC2034
array_8_1='8 latest';
cd "$(cd "${0%/*}" && pwd -P)";
self="$(basename "${BASH_SOURCE[0]}")"
versions=( */ )
versions=( "${versions[@]%/}" )
url='https://github.com/nodejs/docker-node'
# sort version numbers with highest first
IFS=$'\n'; versions=( $(echo "${versions[*]}" | sort -r) ); unset IFS
# get the most recent commit which modified any of "$@"
fileCommit() {
git log -1 --format='format:%H' HEAD -- "$@"
}
echo "# this file is generated via ${url}/blob/$(fileCommit "$self")/$self"
echo
echo "Maintainers: The Node.js Docker Team <${url}> (@nodejs)"
echo "GitRepo: ${url}.git"
echo
# prints "$2$1$3$1...$N"
join() {
local sep="$1"; shift
local out; printf -v out "${sep//%/%%}%s" "$@"
echo "${out#$sep}"
}
for version in "${versions[@]}"; do
# Skip "docs" and other non-docker directories
[ -f "$version/Dockerfile" ] || continue
eval stub="$(echo "$version" | awk -F. '{ print "$array_" $1 "_" $2 }')";
commit="$(fileCommit "$version")"
fullVersion="$(grep -m1 'ENV NODE_VERSION ' "$version/Dockerfile" | cut -d' ' -f3)"
versionAliases=( $fullVersion $version ${stub} )
echo "Tags: $(join ', ' "${versionAliases[@]}")"
echo "GitCommit: ${commit}"
echo "Directory: ${version}"
echo
variants=$(echo "$version"/*/ | xargs -n1 basename)
for variant in $variants; do
# Skip non-docker directories
[ -f "$version/$variant/Dockerfile" ] || continue
commit="$(fileCommit "$version/$variant")"
slash='/'
variantAliases=( "${versionAliases[@]/%/-${variant//$slash/-}}" )
variantAliases=( "${variantAliases[@]//latest-/}" )
echo "Tags: $(join ', ' "${variantAliases[@]}")"
echo "GitCommit: ${commit}"
echo "Directory: ${version}/${variant}"
echo
done
done