Pass multiple pattern args in logs-deploy.sh
[releng/global-jjb.git] / shell / check-info-votes.sh
1 #!/bin/bash -l
2 # SPDX-License-Identifier: EPL-1.0
3 ##############################################################################
4 # Copyright (c) 2019 The Linux Foundation and others.
5 #
6 # All rights reserved. This program and the accompanying materials
7 # are made available under the terms of the Eclipse Public License v1.0
8 # which accompanies this distribution, and is available at
9 # http://www.eclipse.org/legal/epl-v10.html
10 ##############################################################################
11 echo "---> check-info-votes.sh"
12 set -u unset
13
14 ref=$(echo "$GERRIT_REFSPEC" | awk -F"/" '{ print $4 }')
15 pip="pip3"
16
17 # For OPNFV
18 if [[ $NODE_NAME =~ "lf-build" ]]; then
19   pip=pip
20 fi
21
22 if [ -d "/opt/pyenv" ]; then
23   echo "---> Setting up pyenv"
24   export PYENV_ROOT="/opt/pyenv"
25   export PATH="$PYENV_ROOT/bin:$PATH"
26   PYTHONPATH=$(pwd)
27   export PYTHONPATH
28   pyenv local 3.6.4
29   export PYENV_VERSION="3.6.4"
30 fi
31
32 $pip install --user niet
33 $pip install --user lftools
34 $pip install --user lftools[nexus]
35 $pip install --user jsonschema
36
37 change="$(echo "$GERRIT_CHANGE_URL" | awk -F"/" '{print $NF}')"
38 echo "Checking votes:"
39 lftools infofile check-votes INFO.yaml "$GERRIT_URL" "$ref" > gerrit_comment.txt
40 exit_status="$?"
41
42 if [[ "$exit_status" -ne 0 ]]; then
43   echo "Vote not yet complete"
44   cat gerrit_comment.txt
45   exit "$exit_status"
46 else
47   echo "Vote completed submitting review"
48   ssh -p "$GERRIT_PORT" "$USER"@"$GERRIT_HOST" gerrit review "$change" --submit
49 fi