Do not give Code-Review -1 on unstable integration-verify
[releng/builder.git] / jjb / include-raw-check-poms.sh
1 #!/bin/bash
2
3 # @License EPL-1.0 <http://spdx.org/licenses/EPL-1.0>
4 ##############################################################################
5 # Copyright (c) 2015 The Linux Foundation and others.
6 #
7 # All rights reserved. This program and the accompanying materials
8 # are made available under the terms of the Eclipse Public License v1.0
9 # which accompanies this distribution, and is available at
10 # http://www.eclipse.org/legal/epl-v10.html
11 #
12 # Contributors:
13 #   Thanh Ha (The Linux Foundation) - Initial implementation
14 ##############################################################################
15
16 # Clear workspace
17 rm -rf *
18
19 # Create python script to parse json
20 cat > ${WORKSPACE}/parse_json.py << EOF
21 import json
22 import sys
23
24 obj=json.load(sys.stdin)
25 for key in obj.keys():
26     print(key)
27
28 EOF
29
30 # Clone all ODL projects
31 curl -s --header "Accept: application/json" \
32     https://git.opendaylight.org/gerrit/projects/ | \
33     tail -n +2 > ${WORKSPACE}/projects.json
34 for p in `cat ${WORKSPACE}/projects.json | python ${WORKSPACE}/parse_json.py`
35 do
36     if [ "$p" == "All-Users" ] || \
37        [ "$p" == "integration" ] || \
38        [ "$p" == "net-virt-platform" ]
39     then
40         continue
41     fi
42     mkdir -p `dirname "$p"`
43     git clone "https://git.opendaylight.org/gerrit/$p.git" "$p"
44 done
45
46 # Check pom.xml for <repositories> and <pluginRepositories>
47 FILE=repos.txt
48
49 find . -name pom.xml | xargs grep -i '<repositories>\|<pluginRepositories>' > $FILE
50 [[ $(tr -d "\r\n" < $FILE|wc -c) -eq 0 ]] && rm $FILE
51
52 if [ -a $FILE ]
53 then
54     cat $FILE
55     echo "[ERROR] Repos with <repositories> and/or <pluginRepositories> sections found!"
56     exit 1
57 fi