-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbuild-platform-5.sh
More file actions
executable file
·233 lines (190 loc) · 7.02 KB
/
build-platform-5.sh
File metadata and controls
executable file
·233 lines (190 loc) · 7.02 KB
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
#!/bin/bash
exit_with () {
[ "$2" != "" ] && echo -e $2 >&2
exit ${1:-0}
}
trace () {
printf "\n\e[1;33m+--------------------------------------------------------------------------------------------------+\n| %-96s |\n+--------------------------------------------------------------------------------------------------+\e[00m\n\n" "$1"
}
REGISTRY=registry.simplicite.io
PUSH=1
if [ "$1" = "--no-push" ]
then
PUSH=0
shift
fi
[ "$1" = "" -o "$1" = "--help" ] && exit_with 1 "\nUsage: \e[1m$(basename $0)\e[0m <preview|latest|devel|5.x> [<revision (for latest and 6.x)>]\n"
TARGET=$1
REVISION=$2
CURRENT=5.3
# -------------------------------------------------------------------------------------------
# Preview version
# -------------------------------------------------------------------------------------------
if [ "$TARGET" = "preview" ]
then
trace "Building platform images for $TARGET"
./build-platform.sh --delete 5-$TARGET || exit_with $? "Unable to build platform version 5-$TARGET"
trace "Done"
trace "Tagging 5-$TARGET"
docker rmi $REGISTRY/platform:5-$TARGET > /dev/null 2>&1
docker tag $REGISTRY/platform:5-$TARGET-almalinux9-17 $REGISTRY/platform:5-$TARGET
docker rmi $REGISTRY/platform:5-$TARGET-almalinux9-17
trace "Done"
if [ $PUSH -eq 1 ]
then
trace "Pushing tag 5-$TARGET"
./push-to-registries.sh platform 5-$TARGET
trace "Done"
fi
exit_with
fi
# -------------------------------------------------------------------------------------------
# Current version
# -------------------------------------------------------------------------------------------
if [ "$TARGET" = "latest" -o "$TARGET" = "$CURRENT" ]
then
TARGET=latest
[ -z "$REVISION" ] && exit_with 2 "Missing revision for $CURRENT"
trace "Building platform images for $TARGET"
./build-platform.sh --delete 5-$TARGET || exit_with $? "Unable to build platform version 5-$TARGET"
trace "Done"
trace "Tagging 5-$TARGET"
docker rmi $REGISTRY/platform:5-$TARGET > /dev/null 2>&1
docker tag $REGISTRY/platform:5-$TARGET-almalinux9-17 $REGISTRY/platform:5-$TARGET
docker rmi $REGISTRY/platform:5-$TARGET-almalinux9-17
trace "Done"
trace "Tagging 5-$TARGET-jre"
docker rmi $REGISTRY/platform:5-$TARGET-jre > /dev/null 2>&1
docker tag $REGISTRY/platform:5-$TARGET-almalinux9-17-jre $REGISTRY/platform:5-$TARGET-jre
docker rmi $REGISTRY/platform:5-$TARGET-almalinux9-17-jre
trace "Done"
trace "Tagging 5-$TARGET-jvmless"
docker rmi $REGISTRY/platform:5-$TARGET-jvmless > /dev/null 2>&1
docker tag $REGISTRY/platform:5-$TARGET-almalinux9-jvmless $REGISTRY/platform:5-$TARGET-jvmless
docker rmi $REGISTRY/platform:5-$TARGET-almalinux9-jvmless
trace "Done"
trace "Tagging 5"
docker rmi $REGISTRY/platform:5 > /dev/null 2>&1
docker tag $REGISTRY/platform:5-$TARGET $REGISTRY/platform:5
trace "Done"
if [ $PUSH -eq 1 ]
then
trace "Pushing tags 5-$TARGET[-<alpine|alpine-jre|jre|jvmless>], 5 and $TARGET"
./push-to-registries.sh --delete platform \
5-$TARGET-alpine \
5-$TARGET-alpine-jre \
5-$TARGET-jre \
5-$TARGET-jvmless \
5
./push-to-registries.sh platform 5-$TARGET
trace "Done"
fi
for TAG in $CURRENT $CURRENT.$REVISION
do
trace "Tagging $TAG"
docker rmi $REGISTRY/platform:$TAG > /dev/null 2>&1
docker tag $REGISTRY/platform:5-$TARGET $REGISTRY/platform:$TAG
trace "Done"
if [ $PUSH -eq 1 ]
then
trace "Pushing tag $TAG"
./push-to-registries.sh --delete platform $TAG
trace "Done"
fi
done
./build-platform.sh --delete 5-$TARGET-light || exit_with $? "Unable to build platform version 5-$TARGET-light"
trace "Done"
trace "Tagging 5-$TARGET-light"
docker rmi $REGISTRY/platform:5-$TARGET-light > /dev/null 2>&1
docker tag $REGISTRY/platform:5-$TARGET-light-almalinux9-17 $REGISTRY/platform:5-$TARGET-light
docker rmi $REGISTRY/platform:5-$TARGET-light-almalinux9-17
trace "Done"
trace "Tagging 5-$TARGET-light-jre"
docker rmi $REGISTRY/platform:5-$TARGET-light-jre > /dev/null 2>&1
docker tag $REGISTRY/platform:5-$TARGET-light-almalinux9-17-jre $REGISTRY/platform:5-$TARGET-light-jre
docker rmi $REGISTRY/platform:5-$TARGET-light-almalinux9-17-jre
trace "Done"
trace "Tagging 5-$TARGET-light-jvmless"
docker rmi $REGISTRY/platform:5-$TARGET-light-jvmless > /dev/null 2>&1
docker tag $REGISTRY/platform:5-$TARGET-light-almalinux9-jvmless $REGISTRY/platform:5-$TARGET-light-jvmless
docker rmi $REGISTRY/platform:5-$TARGET-light-almalinux9-jvmless
trace "Done"
trace "Tagging 5-light"
docker rmi $REGISTRY/platform:5-light > /dev/null 2>&1
docker tag $REGISTRY/platform:5-$TARGET-light $REGISTRY/platform:5-light
trace "Done"
if [ $PUSH -eq 1 ]
then
trace "Pushing tags 5-$TARGET-light[-<alpine|alpine-jre|jre|jvmless>], 5 and $TARGET"
./push-to-registries.sh --delete platform \
5-$TARGET-light-alpine \
5-$TARGET-light-alpine-jre \
5-$TARGET-light-jre \
5-$TARGET-light-jvmless \
5-light
./push-to-registries.sh platform 5-$TARGET-light
trace "Done"
fi
for TAG in $CURRENT $CURRENT.$REVISION
do
trace "Tagging $TAG-light"
docker rmi $REGISTRY/platform:$TAG-light > /dev/null 2>&1
docker tag $REGISTRY/platform:5-$TARGET-light $REGISTRY/platform:$TAG-light
trace "Done"
if [ $PUSH -eq 1 ]
then
trace "Pushing tag $TAG-light"
./push-to-registries.sh --delete platform $TAG-light
trace "Done"
fi
done
exit_with
fi
if [ "$TARGET" = "devel" ]
then
trace "Building platform images for $TARGET"
./build-platform.sh --delete 5-$TARGET || exit_with $? "Unable to build platform version 5-$TARGET"
trace "Done"
exit_with
fi
# -------------------------------------------------------------------------------------------
# Previous versions
# -------------------------------------------------------------------------------------------
if [ "$TARGET" = "5.0" -o "$TARGET" = "5.1" -o "$TARGET" = "5.2" ]
then
[ -z "$REVISION" ] && exit_with 2 "Missing revision for $TARGET"
./build-platform.sh --delete $TARGET || exit_with $? "Unable to build platform version $TARGET"
./build-platform.sh --delete $TARGET-light || exit_with $? "Unable to build platform version $TARGET-light"
trace "Tagging $TARGET"
docker rmi $REGISTRY/platform:$TARGET > /dev/null 2>&1
docker tag $REGISTRY/platform:$TARGET-almalinux9-17 $REGISTRY/platform:$TARGET
docker rmi $REGISTRY/platform:$TARGET-almalinux9-17
trace "Done"
trace "Tagging $TARGET-light"
docker rmi $REGISTRY/platform:$TARGET-light > /dev/null 2>&1
docker tag $REGISTRY/platform:$TARGET-light-almalinux9-17 $REGISTRY/platform:$TARGET-light
docker rmi $REGISTRY/platform:$TARGET-light-almalinux9-17
trace "Done"
if [ $PUSH -eq 1 ]
then
trace "Pushing tags $TARGET $TARGET-light"
./push-to-registries.sh platform $TARGET
./push-to-registries.sh platform $TARGET-light
trace "Done"
fi
for TAG in $TARGET.$REVISION
do
trace "Tagging $TAG"
docker rmi $REGISTRY/platform:$TAG > /dev/null 2>&1
docker tag $REGISTRY/platform:$TARGET $REGISTRY/platform:$TAG
trace "Done"
if [ $PUSH -eq 1 ]
then
trace "Pushing tag $TAG"
./push-to-registries.sh --delete platform $TAG
trace "Done"
fi
done
exit_with
fi
exit_with 1 "Unknown target $TARGET"