Fix rtd merge job to handle new tag uploaded
[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
29     latest_version=$(pyenv versions \
30       | sed s,*,,g \
31       | awk '/[0-9]+/{ print $1 }' \
32       | sort --version-sort \
33       | awk '/./{line=$0} END{print line}')
34
35     pyenv local "$latest_version"
36     export PYENV_VERSION="3.6.4"
37 fi
38
39 $pip install --user niet
40 $pip install --user lftools
41 $pip install --user lftools[nexus]
42 $pip install --user jsonschema
43
44 echo "Checking votes:"
45 lftools infofile check-votes INFO.yaml "$GERRIT_URL" "$ref" > gerrit_comment.txt
46 exit_status="$?"
47
48 if [[ "$exit_status" -ne 0 ]]; then
49     echo "Vote not yet complete"
50     cat gerrit_comment.txt
51     exit "$exit_status"
52 else
53     echo "Vote completed submitting review"
54     ssh -p "$GERRIT_PORT" "$USER"@"$GERRIT_HOST" gerrit review "$GERRIT_PATCHSET_REVISION" --verified 1
55     sleep 5
56     ssh -p "$GERRIT_PORT" "$USER"@"$GERRIT_HOST" gerrit review "$GERRIT_PATCHSET_REVISION" --submit
57 fi