blob: 26a8dfb83f4e23e165e9a9a7ea7132b1d5533b26 [file] [log] [blame]
vv770d4c7bbb62022-02-08 17:07:10 +00001#!/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
Vijay Venkatesh Kumard142acc2022-10-03 18:10:44 +000019# 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
vv770d4c7bbb62022-02-08 17:07:10 +000029set -eu
30echo "--> onap-gerrit-review-wrapper.sh"
31
32# Cleanup temporary directory if exist
33rm -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
42export PATH=$PATH:/tmp/ogr/onap-gerrit-review/bin
43
44# Execute OGR
Vijay Venkatesh Kumard142acc2022-10-03 18:10:44 +000045onap-gerrit-review -S -G "$@"