Update list of modules for tag creation and tag deletion 18/12218/2
authorgarciadeblas <gerardo.garciadeblas@telefonica.com>
Tue, 21 Jun 2022 08:42:52 +0000 (10:42 +0200)
committergarciadeblas <gerardo.garciadeblas@telefonica.com>
Tue, 21 Jun 2022 08:42:56 +0000 (10:42 +0200)
Change-Id: I0e486a70512af81d554ac9a843843431c5048b10
Signed-off-by: garciadeblas <gerardo.garciadeblas@telefonica.com>
tools/check_changes.sh
tools/deletetag.sh
tools/newtag.sh

index 4cd4072..fe92a27 100755 (executable)
@@ -36,7 +36,8 @@ echo "Changes in branch ${BRANCH} from ${FROM_REF} to ${TO_REF} stored in ${OSM_
 
 touch "${OSM_CHANGES_FOLDER}/osm_changes-${BRANCH}-from${FROM_REF}-to${TO_REF}.log"
 
-for repo in NBI osmclient IM NG-UI N2VC NG-UI MON POL PLA RO SOL005 common devops tests; do
+modules="common devops IM LCM MON N2VC NBI NG-UI osmclient RO PLA POL SOL003 SOL005 tests"
+for repo in $modules; do
     echo ${repo}
     git -C ${OSM_CHANGES_FOLDER} clone "https://osm.etsi.org/gerrit/osm/${repo}"
     git -C ${OSM_CHANGES_FOLDER}/$repo checkout ${BRANCH}
index 9e915a0..754b9b3 100755 (executable)
@@ -1,6 +1,23 @@
 #!/bin/bash
+#
+#   Copyright ETSI Contributors and Others
+#
+#   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
+#
+#       http://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.
+#
 if [ $# -ne 2 ]; then
     echo "Usage $0 <repo> <tag>"
+    echo "Example: $0 all v11.0.1"
+    echo "Example: $0 devops v11.0.3"
     exit 1
 fi
 
@@ -8,7 +25,7 @@ TAG="$2"
 tag_header="OSM Release TWO:"
 tag_message="$tag_header version $TAG"
 
-modules="juju-charms devops descriptor-packages openvim RO SO UI osmclient"
+modules="common devops IM LCM MON N2VC NBI NG-UI osmclient RO PLA POL SOL003 SOL005 tests"
 list=""
 for i in $modules; do
     if [ "$1" == "$i" -o "$1" == "all" ]; then
@@ -25,12 +42,14 @@ if [ -z "$list" ]; then
 fi
 
 for i in $list; do
-    echo
     echo $i
+    if [ ! -d $i ]; then
+        git clone ssh://$USER@osm.etsi.org:29418/osm/$i
+    fi
     git -C $i fetch
-    echo "Deleting tag $tag in repo $i"
-    git -C $i tag -d $tag
-    git -C $i push origin :refs/tags/$tag
+    echo "Deleting tag $TAG in repo $i"
+    git -C $i tag -d $TAG
+    git -C $i push origin :refs/tags/$TAG
     sleep 2
 done
 
index d90addc..0638fc7 100755 (executable)
@@ -29,7 +29,7 @@ RELEASE_NAME="$5"
 tag_header="OSM Release $RELEASE_NAME:"
 tag_message="$tag_header version $TAG"
 
-modules="common devops IM LCM MON N2VC NBI osmclient RO POL NG-UI PLA tests SOL005"
+modules="common devops IM LCM MON N2VC NBI NG-UI osmclient RO PLA POL SOL003 SOL005 tests"
 list=""
 for i in $modules; do
     if [ "$1" == "$i" -o "$1" == "all" ]; then