Add release script, fix sed for MacOS
[policy/parent.git] / integration / src / release_scripts / 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 case "$release_phase" in
180
181 1)  release_phase_1
182     ;;
183
184 2)  release_phase_2
185     ;;
186
187 3)  release_phase_3
188     ;;
189
190 *) echo "specified release phase '$release_phase' is invalid"
191    ;;
192 esac
193