Add release script, fix sed for MacOS
[policy/parent.git] / integration / src / release_scripts / bumpSnapshots.sh
1 #!/bin/bash
2
3 #
4 # ============LICENSE_START================================================
5 # ONAP
6 # =========================================================================
7 # Copyright (C) 2021-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 # Use the bash internal OSTYPE variable to check for MacOS
30 if [[ "$OSTYPE" == "darwin"* ]]
31 then
32     SED="gsed"
33 else
34     SED="sed"
35 fi
36
37 declare -a pf_repos=(
38         "policy/parent"
39         "policy/docker"
40         "policy/common"
41         "policy/models"
42         "policy/api"
43         "policy/pap"
44         "policy/drools-pdp"
45         "policy/apex-pdp"
46         "policy/xacml-pdp"
47         "policy/distribution"
48         "policy/gui"
49         "policy/clamp"
50         "policy/drools-applications"
51 )
52
53 usage()
54 {
55     echo ""
56     echo "$SCRIPT_NAME - generate commits to bump the snapshot version and update references to snapshot references"
57     echo "               on any repos that need to be bumped or updated"
58     echo ""
59     echo "       usage:  $SCRIPT_NAME [-options]"
60     echo ""
61     echo "       options"
62     echo "         -h           - this help message"
63     echo "         -d data_file - the policy release data file to use, defaults to '$release_data_file'"
64     echo "         -l location  - the location of the policy framework repos on the file system,"
65     echo "                        defaults to '$repo_location'"
66     echo "         -i issue-id  - issue ID in the format POLICY-nnnn"
67     echo ""
68     echo " examples:"
69     echo "  $SCRIPT_NAME -l /home/user/onap -d /home/user/data/pf_release_data.csv -i POLICY-1234"
70     echo "    bump snapshots on the repos at location '/home/user/onap' using the release data"
71     echo "    in the file '/home/user/data/pf_release_data.csv'"
72     exit 255;
73 }
74
75 while getopts "hd:l:i:" opt
76 do
77     case $opt in
78     h)
79         usage
80         ;;
81     d)
82         release_data_file=$OPTARG
83         ;;
84     l)
85         repo_location=$OPTARG
86         ;;
87     i)
88         issue_id=$OPTARG
89         ;;
90     \?)
91         usage
92         exit 1
93         ;;
94     esac
95 done
96
97 if [ $OPTIND -eq 1 ]
98 then
99     echo "no arguments were specified"
100     usage
101 fi
102
103 if [[ -z "$repo_location" ]]
104 then
105     echo "policy repo location not specified on -l flag"
106     exit 1
107 fi
108
109 if ! [ -d "$repo_location" ]
110 then
111     echo "policy repo location '$repo_location' not found"
112     exit 1
113 fi
114
115 if [[ -z "$release_data_file" ]]
116 then
117     echo "policy release data file not specified on -d flag"
118     exit 1
119 fi
120
121 if ! [ -f "$release_data_file" ]
122 then
123     echo "policy release data file '$release_data_file' not found"
124     exit 1
125 fi
126
127 if [ -z "$issue_id" ]
128 then
129     echo "issue_id not specified on -i flag"
130     exit 1
131 fi
132
133 if ! echo "$issue_id" | grep -Eq '^POLICY-[0-9]*$'
134 then
135   echo "issue ID is invalid, it should be of form 'POLICY-nnnn'"
136   exit 1
137 fi
138
139 for specified_repo in "${pf_repos[@]}"
140 do
141     read    repo \
142             latest_released_tag \
143             latest_snapshot_tag \
144             changed_files docker_images \
145         <<< $( grep $specified_repo $release_data_file | tr ',' ' ' )
146
147     if [ ! "$repo" = "$specified_repo" ]
148     then
149         echo "repo '$specified_repo' not found in file 'pf_release_data.csv'"
150         continue
151     fi
152
153     next_release_version=${latest_snapshot_tag%-*}
154
155     if [ "$latest_released_tag" = "$next_release_version" ]
156     then
157         declare -i major_version=`echo $next_release_version | $SED -E 's/^([0-9]*)\.[0-9]*\.[0-9]*$/\1/'`
158         declare -i minor_version=`echo $next_release_version | $SED -E 's/^[0-9]*\.([0-9]*)\.[0-9]*$/\1/'`
159         declare -i patch_version=`echo $next_release_version | $SED -E 's/^[0-9]*\.[0-9]*\.([0-9]*)$/\1/'`
160         declare -i new_patch_version=$(($patch_version+1))
161
162         new_snapshot_tag="$major_version"."$minor_version"."$new_patch_version"-SNAPSHOT
163
164         echo updating snapshot version and references of repo $repo to $new_snapshot_tag . . .
165         mvn -f $repo_location/$repo \
166             -DnewVersion=$new_snapshot_tag versions:set \
167             versions:update-child-modules versions:commit
168
169         temp_file=$(mktemp)
170
171         echo updating snapshot version of repo $repo in $repo_location/$repo/version.properties
172         $SED -e "s/patch=$patch_version/patch=$new_patch_version/" $repo_location/$repo/version.properties > $temp_file
173         mv $temp_file $repo_location/$repo/version.properties
174     fi
175
176     updateRefs.sh -pcmos -d $release_data_file -l $repo_location -r $repo
177
178     if [ "$(git -C $repo_location/$specified_repo status | grep '^[ \t]*modified:[ \t]*pom.xml' > /dev/null 2>&1)" = 0 ]
179     then
180         references_updated=0
181     else
182         references_updated=1
183     fi
184
185     if [ "$latest_released_tag" != "$next_release_version" ] && [ $references_updated -ne 0 ]
186     then
187         continue
188     fi
189
190     echo "generating commit to update snapshot version and/or references of repo $repo . . ."
191
192     generateCommit.sh \
193         -l $repo_location \
194         -r $repo \
195         -i $issue_id \
196         -e "Update snapshot and/or references of $repo to latest snapshots" \
197         -m "$repo updated to its latest own and reference snapshots"
198
199     echo "commit to update snapshot version and/or references of repo $repo generated"
200 done
201