Update release and report scripts
[policy/parent.git] / integration / src / main / scripts / release / releasePhase.sh
1 #!/bin/bash
2
3 #
4 # ============LICENSE_START================================================
5 # ONAP
6 # =========================================================================
7 # Copyright (C) 2022 Nordix Foundation.
8 # =========================================================================
9 # Licensed under the Apache License, Version 2.0 (the "License");
10 # you may not use this file except in compliance with the License.
11 # You may obtain a copy of the License at
12 #
13 #      http://www.apache.org/licenses/LICENSE-2.0
14 #
15 # Unless required by applicable law or agreed to in writing, software
16 # distributed under the License is distributed on an "AS IS" BASIS,
17 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 # See the License for the specific language governing permissions and
19 # limitations under the License.
20 # ============LICENSE_END==================================================
21 #
22
23 set -e
24
25 SCRIPT_NAME=$(basename "$0")
26 repo_location="./"
27 release_data_file="./pf_release_data.csv"
28
29 usage()
30 {
31     echo ""
32     echo "$SCRIPT_NAME - execute a certain policy framework release phase"
33     echo ""
34     echo "       usage:  $SCRIPT_NAME [-options]"
35     echo ""
36     echo "       options"
37     echo "         -h           - this help message"
38     echo "         -d data_file - the policy release data file to use, defaults to '$release_data_file'"
39     echo "         -l location  - the location of the policy framework repos on the file system,"
40     echo "                        defaults to '$repo_location'"
41     echo "         -i issue-id  - issue ID in the format POLICY-nnnn"
42     echo "         -p phase     - the release phase, a positive integer"
43     echo ""
44     echo " examples:"
45     echo "  $SCRIPT_NAME -l /home/user/onap -d /home/user/data/pf_release_data.csv -i POLICY-1234 -p 3"
46     echo "    perform release phase 3 on the repos at location '/home/user/onap' using the release data"
47     echo "    in the file '/home/user/data/pf_release_data.csv'"
48     exit 255;
49 }
50
51 while getopts "hd:l:i:p:" opt
52 do
53     case $opt in
54     h)
55         usage
56         ;;
57     d)
58         release_data_file=$OPTARG
59         ;;
60     l)
61         repo_location=$OPTARG
62         ;;
63     i)
64         issue_id=$OPTARG
65         ;;
66     p)
67         release_phase=$OPTARG
68         ;;
69     \?)
70         usage
71         exit 1
72         ;;
73     esac
74 done
75
76 if [ $OPTIND -eq 1 ]
77 then
78     echo "no arguments were specified"
79     usage
80 fi
81
82 if [[ -z "$repo_location" ]]
83 then
84     echo "policy repo location not specified on -l flag"
85     exit 1
86 fi
87
88 if ! [ -d "$repo_location" ]
89 then
90     echo "policy repo location '$repo_location' not found"
91     exit 1
92 fi
93
94 if [[ -z "$release_data_file" ]]
95 then
96     echo "policy release data file not specified on -d flag"
97     exit 1
98 fi
99
100 if ! [ -f "$release_data_file" ]
101 then
102     echo "policy release data file '$release_data_file' not found"
103     exit 1
104 fi
105
106 if [ -z "$issue_id" ]
107 then
108     echo "issue_id not specified on -i flag"
109     exit 1
110 fi
111
112 if ! echo "$issue_id" | grep -Eq '^POLICY-[0-9]*$'
113 then
114   echo "issue ID is invalid, it should be of form 'POLICY-nnnn'"
115   exit 1
116 fi
117
118 if [ -z "$release_phase" ]
119 then
120     echo "release_phase not specified on -p flag"
121     exit 1
122 fi
123
124 if ! [[ "$release_phase" =~ ^[0-9]+$ ]]
125 then
126   echo "release_phase is invalid, it should be a positive integer"
127   exit 1
128 fi
129
130 release_phase_1() {
131     echo "Updating parent references in the parent pom and generating commit . . ."
132     updateRefs.sh -d "$release_data_file" -l "$repo_location" -r policy/parent -p
133     generateCommit.sh \
134         -l "$repo_location" \
135         -r policy/parent \
136         -i "$issue_id" \
137         -e "update parent references in policy/parent pom" \
138         -m "updated the parent references in the policy/parent pom"
139     echo "Updated parent references in the parent pom and generated commit"
140 }
141
142 release_phase_2() {
143     echo "Generating artifact release yaml file and commit for policy/parent . . ."
144     releaseRepo.sh -d "$release_data_file" -l "$repo_location" -r policy/parent -i "$issue_id"
145     echo "Generated artifact release yaml file and commit for policy/parent"
146 }
147
148 release_phase_3() {
149     echo "Updating snapshots for policy/parent, updating references on policy/docker and policy/common . . ."
150     bumpSnapshots.sh \
151         -d "$release_data_file" \
152         -l "$repo_location" \
153         -i "$issue_id"
154     updateRefs.sh \
155         -p \
156         -d "$release_data_file" \
157         -l "$repo_location" \
158         -r "policy/docker"
159     updateRefs.sh \
160         -p \
161         -d "$release_data_file" \
162         -l "$repo_location" \
163         -r "policy/common"
164     generateCommit.sh \
165         -l "$repo_location" \
166         -r "policy/docker" \
167         -i "$issue_id" \
168         -e "update parent references in policy/docker pom" \
169         -m "updated the parent references in the policy/docker pom"
170     generateCommit.sh \
171         -l "$repo_location" \
172         -r "policy/common" \
173         -i "$issue_id" \
174         -e "update parent references in policy/common pom" \
175         -m "updated the parent references in the policy/common pom"
176     echo "Updated snapshots for policy/parent, updating references on policy/docker and policy/common"
177 }
178
179 release_phase_4() {
180     echo "Generating artifact release yaml file and commit for policy/common . . ."
181     releaseRepo.sh -d "$release_data_file" -l "$repo_location" -r policy/common -i "$issue_id"
182     echo "Generated artifact release yaml file and commit for policy/common"
183
184     echo "Generating docker release yaml file and commit for policy/docker . . ."
185     releaseRepoImages.sh -d "$release_data_file" -l "$repo_location" -r policy/docker -i "$issue_id"
186     echo "Generated docker release yaml file and commit for policy/docker"
187 }
188
189 release_phase_5() {
190     echo "Updating snapshots for policy/common and policy/docker, updating references on policy/models . . ."
191     bumpSnapshots.sh \
192         -d "$release_data_file" \
193         -l "$repo_location" \
194         -i "$issue_id"
195     updateRefs.sh \
196         -pc \
197         -d "$release_data_file" \
198         -l "$repo_location" \
199         -r "policy/models"
200     generateCommit.sh \
201         -l "$repo_location" \
202         -r "policy/models" \
203         -i "$issue_id" \
204         -e "update parent,common references in policy/models pom" \
205         -m "updated the parent and common references in the policy/models pom"
206     echo "Updated snapshots for policy/common and policy/docker, updated references on policy/models"
207 }
208
209 release_phase_6() {
210     echo "Generating artifact release yaml file and commit for policy/models . . ."
211     releaseRepo.sh -d "$release_data_file" -l "$repo_location" -r policy/models -i "$issue_id"
212     echo "Generated artifact release yaml file and commit for policy/models"
213 }
214
215 release_phase_7() {
216     echo "Generating docker release yaml file and commit for policy/models . . ."
217     releaseRepoImages.sh -d "$release_data_file" -l "$repo_location" -r policy/models -i "$issue_id"
218     echo "Generated docker release yaml file and commit for policy/models"
219 }
220
221 release_phase_8() {
222     echo "Updating snapshots for policy/models, updating references on other repos . . ."
223     bumpSnapshots.sh \
224         -d "$release_data_file" \
225         -l "$repo_location" \
226         -i "$issue_id"
227     updateRefs.sh \
228         -pcmk \
229         -d "$release_data_file" \
230         -l "$repo_location" \
231         -r "policy/apex-pdp"
232     updateRefs.sh \
233         -pcmk \
234         -d "$release_data_file" \
235         -l "$repo_location" \
236         -r "policy/api"
237     updateRefs.sh \
238         -pcmk \
239         -d "$release_data_file" \
240         -l "$repo_location" \
241         -r "policy/clamp"
242     updateRefs.sh \
243         -pcmk \
244         -d "$release_data_file" \
245         -l "$repo_location" \
246         -r "policy/distribution"
247     updateRefs.sh \
248         -pcmk \
249         -d "$release_data_file" \
250         -l "$repo_location" \
251         -r "policy/drools-pdp"
252     updateRefs.sh \
253         -pcmk \
254         -d "$release_data_file" \
255         -l "$repo_location" \
256         -r "policy/pap"
257     updateRefs.sh \
258         -pcmk \
259         -d "$release_data_file" \
260         -l "$repo_location" \
261         -r "policy/xacml-pdp"
262     generateCommit.sh \
263         -l "$repo_location" \
264         -r "policy/apex-pdp" \
265         -i "$issue_id" \
266         -e "update references in policy/apex-pdp pom" \
267         -m "updated references in the policy/apex-pdp pom"
268     generateCommit.sh \
269         -l "$repo_location" \
270         -r "policy/api" \
271         -i "$issue_id" \
272         -e "update references in policy/api pom" \
273         -m "updated references in the policy/api pom"
274     generateCommit.sh \
275         -l "$repo_location" \
276         -r "policy/clamp" \
277         -i "$issue_id" \
278         -e "update references in policy/clamp pom" \
279         -m "updated references in the policy/clamp pom"
280     generateCommit.sh \
281         -l "$repo_location" \
282         -r "policy/distribution" \
283         -i "$issue_id" \
284         -e "update references in policy/distribution pom" \
285         -m "updated references in the policy/distribution pom"
286     generateCommit.sh \
287         -l "$repo_location" \
288         -r "policy/drools-pdp" \
289         -i "$issue_id" \
290         -e "update references in policy/drools-pdp pom" \
291         -m "updated references in the policy/drools-pdp pom"
292     generateCommit.sh \
293         -l "$repo_location" \
294         -r "policy/pap" \
295         -i "$issue_id" \
296         -e "update references in policy/pap pom" \
297         -m "updated references in the policy/pap pom"
298     generateCommit.sh \
299         -l "$repo_location" \
300         -r "policy/xacml-pdp" \
301         -i "$issue_id" \
302         -e "update references in policy/xacml-pdp pom" \
303         -m "updated references in the policy/xacml-pdp pom"
304     echo "Updated snapshots for policy/models, updated references on other repos"
305 }
306
307 release_phase_9() {
308     echo "Generating artifact release yaml file and commit for repos . . ."
309     releaseRepo.sh -d "$release_data_file" -l "$repo_location" -r policy/apex-pdp -i "$issue_id"
310     releaseRepo.sh -d "$release_data_file" -l "$repo_location" -r policy/api -i "$issue_id"
311     releaseRepo.sh -d "$release_data_file" -l "$repo_location" -r policy/clamp -i "$issue_id"
312     releaseRepo.sh -d "$release_data_file" -l "$repo_location" -r policy/distribution -i "$issue_id"
313     releaseRepo.sh -d "$release_data_file" -l "$repo_location" -r policy/drools-pdp -i "$issue_id"
314     releaseRepo.sh -d "$release_data_file" -l "$repo_location" -r policy/pap -i "$issue_id"
315     releaseRepo.sh -d "$release_data_file" -l "$repo_location" -r policy/xacml-pdp -i "$issue_id"
316     echo "Generated artifact release yaml file and commit for repos"
317 }
318
319 release_phase_10() {
320     echo "Generating docker release yaml file and commit for repos . . ."
321     releaseRepoImages.sh -d "$release_data_file" -l "$repo_location" -r policy/apex-pdp -i "$issue_id"
322     releaseRepoImages.sh -d "$release_data_file" -l "$repo_location" -r policy/api -i "$issue_id"
323     releaseRepoImages.sh -d "$release_data_file" -l "$repo_location" -r policy/clamp -i "$issue_id"
324     releaseRepoImages.sh -d "$release_data_file" -l "$repo_location" -r policy/distribution -i "$issue_id"
325     releaseRepoImages.sh -d "$release_data_file" -l "$repo_location" -r policy/drools-pdp -i "$issue_id"
326     releaseRepoImages.sh -d "$release_data_file" -l "$repo_location" -r policy/pap -i "$issue_id"
327     releaseRepoImages.sh -d "$release_data_file" -l "$repo_location" -r policy/xacml-pdp -i "$issue_id"
328     echo "Generated docker release yaml file and commit for repos"
329 }
330
331 release_phase_11() {
332     echo "Updating snapshots for repos, updating references on policy/drools-applications, policy/gui . . ."
333     bumpSnapshots.sh \
334         -d "$release_data_file" \
335         -l "$repo_location" \
336         -i "$issue_id"
337     updateRefs.sh \
338         -pcmok \
339         -d "$release_data_file" \
340         -l "$repo_location" \
341         -r "policy/drools-applications"
342     updateRefs.sh \
343         -pcmxk \
344         -d "$release_data_file" \
345         -l "$repo_location" \
346         -r "policy/gui"
347     generateCommit.sh \
348         -l "$repo_location" \
349         -r "policy/drools-applications" \
350         -i "$issue_id" \
351         -e "update references in policy/drools-applications pom" \
352         -m "updated references in the policy/drools-applications pom"
353     generateCommit.sh \
354         -l "$repo_location" \
355         -r "policy/gui" \
356         -i "$issue_id" \
357         -e "update references in policy/gui pom" \
358         -m "updated references in the policy/gui pom"
359     echo "Updated snapshots for repos, updated references on policy/drools-applications, policy/gui"
360 }
361
362 release_phase_12() {
363     echo "Generating artifact release yaml file and commit for policy/drools-applications . . ."
364     releaseRepo.sh -d "$release_data_file" -l "$repo_location" -r policy/drools-applications -i "$issue_id"
365     releaseRepo.sh -d "$release_data_file" -l "$repo_location" -r policy/gui -i "$issue_id"
366     echo "Generated artifact release yaml file and commit for policy/drools-applications"
367 }
368
369 release_phase_13() {
370     echo "Generating docker release yaml file and commit for policy/drools-applications . . ."
371     releaseRepoImages.sh -d "$release_data_file" -l "$repo_location" -r policy/drools-applications -i "$issue_id"
372     releaseRepoImages.sh -d "$release_data_file" -l "$repo_location" -r policy/gui -i "$issue_id"
373     echo "Generated docker release yaml file and commit for policy/drools-applications"
374 }
375
376 release_phase_14() {
377     echo "Updating snapshots on policy/drools-applications, policy/gui and updating release data file . . ."
378     bumpSnapshots.sh \
379         -d "$release_data_file" \
380         -l "$repo_location" \
381         -i "$issue_id"
382     updateRefs.sh \
383         -f \
384         -d "$release_data_file" \
385         -l "$repo_location" \
386         -r "policy/parent"
387     generateCommit.sh \
388         -l "$repo_location" \
389         -r "policy/parent" \
390         -i "$issue_id" \
391         -e "update release data in policy/parent" \
392         -m "updated release data in policy/parent"
393     echo "Updated snapshots on policy/drools-applications, policy/gui and updated release data file"
394 }
395
396 case "$release_phase" in
397
398 1)  release_phase_1
399     ;;
400
401 2)  release_phase_2
402     ;;
403
404 3)  release_phase_3
405     ;;
406
407 4)  release_phase_4
408     ;;
409
410 5)  release_phase_5
411     ;;
412
413 6)  release_phase_6
414     ;;
415
416 7)  release_phase_7
417     ;;
418
419 8)  release_phase_8
420     ;;
421
422 9)  release_phase_9
423     ;;
424
425 10)  release_phase_10
426     ;;
427
428 11)  release_phase_11
429     ;;
430
431 12)  release_phase_12
432     ;;
433
434 13)  release_phase_13
435     ;;
436
437 14)  release_phase_14
438     ;;
439
440 *) echo "specified release phase '$release_phase' is invalid"
441    ;;
442 esac