Gerrit review tool wrapper updates
[ci-management.git] / shell / onap-gerrit-review-wrapper.sh
1 #!/bin/sh
2
3 # ================================================================================
4 # Copyright (c) 2022 AT&T Intellectual Property. 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 # ============LICENSE_END=========================================================
18
19 # Note that all arguments passed to this script are passed on to
20 # onap-gerrit-review (OGR) tool
21
22 # You can invoke this script with the -E flag to give a non-blocking report.
23 # You can also pass in arguments to turn off certain messages using the -m option, such as:
24 # -m text-before-copyright -m misnamed-license-txt
25
26 # These options can be included in project job templates where the wrapper script
27 # is being invoked under pre-build-script hooks
28
29 set -eu
30 echo "--> onap-gerrit-review-wrapper.sh"
31
32 # Cleanup temporary directory if exist
33 rm -Rf /tmp/ogr
34
35 # Create temporary directory to clone OGR repository
36 (
37    mkdir /tmp/ogr
38    cd  /tmp/ogr
39    git clone https://github.com/TonyLHansen/onap-gerrit-review.git
40 )
41 # Add OGR/bin to PATH
42 export PATH=$PATH:/tmp/ogr/onap-gerrit-review/bin
43
44 # Execute OGR
45 onap-gerrit-review -S -G "$@"