cd48349a755e3537a48862710a6d7cff490194a9
[infra/tools.git] / onap-reviews / heis-nordix2onap.sh
1 #! /bin/bash
2
3 # ============LICENSE_START=======================================================
4 #  Copyright (C) 2018 The Nordix Foundation. All rights reserved.
5 # ================================================================================
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
9 #
10 #      http://www.apache.org/licenses/LICENSE-2.0
11 #
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
17 #
18 # SPDX-License-Identifier: Apache-2.0
19 # ============LICENSE_END=========================================================
20
21 #
22 # This script transfers a review with a given change id from the Nordix gerrit repository
23 # to the ONAP gerrit repository. The script:
24 # - switches to the master branch
25 # - resets the master branch to be at the latest merged version of the master branch on the
26 #   Nordix gerrit repository
27 # - pulls the given review onto the master branch
28 # - pushes the review upstream onto the master branch of the ONAP repository
29 # - resets the master branch again
30 # - checks out the nordix-dev branch
31 #
32
33 if [ $# -ne 1 ]
34 then
35   echo "usage $0 commit-id"
36   exit 1
37 fi
38
39 commit_check=`git log | grep "^commit $1"`
40 if [ "" == "$commit_check" ]
41 then
42   echo "commit with commit id $1 not found"
43   exit 2
44 fi
45
46 git checkout master
47 git fetch origin
48 git reset --hard origin/master
49
50 git pull origin $1
51
52 git push upstream HEAD:refs/for/master
53 retVal=$?
54 if [ $retVal -eq 0 ]
55 then
56   echo "push upstream to ONAP succeeded"
57 else
58   echo "push upstream to ONAP failed"
59 fi
60
61 git fetch origin
62 git reset --hard origin/master
63
64 git checkout nordix-dev