forked from AdoptOpenJDK/openjdk-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgenerate_manifest_script.sh
executable file
·166 lines (149 loc) · 4.53 KB
/
generate_manifest_script.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
#!/usr/bin/env bash
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
set -o pipefail
root_dir="$PWD"
source_prefix="adoptopenjdk"
source_repo="openjdk"
version="9"
tag_aliases=""
arch_tags=""
man_file=${root_dir}/manifest_commands.sh
source ./common_functions.sh
# Print the arch specific annotate command.
function print_annotate_cmd() {
main_tag=$1
arch_tag=$2
# The manifest tool expects "amd64" as arch and not "x86_64"
march=$(echo ${arch_tag} | awk -F':' '{ print $2 }' | awk -F'-' '{ print $1 }')
case ${march} in
x86_64)
march="amd64"
;;
aarch64)
march="arm64"
;;
armv7l)
march="arm"
;;
*)
;;
esac
echo "\"${manifest_tool}\" manifest annotate ${main_tag} ${arch_tag} --os ${os_family} --arch ${march}" >> ${man_file}
}
# Space separated list of tags
function print_manifest_cmd() {
trepo=$1; shift;
img_list=$*
# Global variable tag_aliases has the alias list
for talias in ${tag_aliases}
do
echo "\"${manifest_tool}\" manifest create ${trepo}:${talias} ${img_list}" >> ${man_file}
for img in ${img_list}
do
print_annotate_cmd ${trepo}:${talias} ${img}
done
echo "\"${manifest_tool}\" manifest push ${trepo}:${talias}" >> ${man_file}
echo >> ${man_file}
done
}
# Check each of the images in the global variable arch_tags exist and
# Create the tag list from the arch_tags list.
function print_tags() {
repo=$1
img_list=""
# Check if all the individual docker images exist for each expected arch
for arch_tag in ${arch_tags}
do
trepo=${source_prefix}/${repo}
echo -n "INFO: Pulling image: ${trepo}:${arch_tag}..."
ret=$(check_image ${trepo}:${arch_tag})
if [ ${ret} != 0 ]; then
echo "Warning: Docker Image ${trepo}:${arch_tag} not found. Skipping... \n"
continue;
fi
img_list="${img_list} ${trepo}:${arch_tag}"
done
print_manifest_cmd ${trepo} ${img_list}
}
# Check if the manifest tool is installed
check_manifest_tool
if [ ! -z "$1" ]; then
set_version $1
fi
# Set the OSes that will be built on based on the current arch
set_arch_os
# Which JVMs are available for the current version
./generate_latest_sums.sh ${version}
# Source the hotspot and openj9 shasums scripts
available_jvms=""
if [ -f hotspot_shasums_latest.sh ]; then
source ./hotspot_shasums_latest.sh
available_jvms="hotspot"
fi
if [ -f openj9_shasums_latest.sh ]; then
source ./openj9_shasums_latest.sh
available_jvms="${available_jvms} openj9"
fi
# Populate the script to create the manifest list
echo "#!/usr/bin/env bash" > ${man_file}
echo >> ${man_file}
chmod +x ${man_file}
# Go through each vm / os / build / type combination and build the manifest commands
# vm = hotspot / openj9
# os = alpine / ubuntu
# build = releases / nightly
# type = full / slim
for vm in ${available_jvms}
do
for package in ${all_packages}
do
for os in ${oses}
do
# Build = Release or Nightly
builds=$(parse_vm_entry ${vm} ${version} ${package} ${os} "Build:")
# Type = Full or Slim
btypes=$(parse_vm_entry ${vm} ${version} ${package} ${os} "Type:")
for build in ${builds}
do
shasums="${package}"_"${vm}"_"${version}"_"${build}"_sums
jverinfo=${shasums}[version]
eval jrel=\${$jverinfo}
if [[ -z ${jrel} ]]; then
continue;
fi
# Docker image tags cannot have "+" in them, replace it with "_" instead.
rel=$(echo ${jrel} | sed 's/+/_/g')
srepo=${source_repo}${version}
if [ "${vm}" != "hotspot" ]; then
srepo=${srepo}-${vm}
fi
for btype in ${btypes}
do
# Do not build anything built by Official Docker builds.
if [ "${os}" == "ubuntu" && "${build}" == "releases" && "${btype}" == "full" ]; then
continue;
fi
echo -n "INFO: Building tag list for [${vm}]-[${package}]-[${os}]-[${build}]-[${btype}]..."
# Get the relevant tags for this vm / os / build / type combo from the tags.config file
raw_tags=$(parse_tag_entry ${os} ${package} ${build} ${btype})
build_tags ${vm} ${version} ${package} ${rel} ${os} ${build} ${raw_tags}
echo "done"
print_tags ${srepo}
done
done
done
done
done
echo "INFO: Manifest commands in file: ${man_file}"