Add inactive projects to excludes list 48/31848/2
authorThanh Ha <thanh.ha@linuxfoundation.org>
Wed, 23 Dec 2015 21:13:39 +0000 (16:13 -0500)
committerThanh Ha <thanh.ha@linuxfoundation.org>
Wed, 23 Dec 2015 21:22:15 +0000 (16:22 -0500)
Change-Id: I5fea84a0573500ae376d3a2166eef5e7880074bb
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>
jjb/include-raw-check-poms.sh

index aa01f5889ed14b18273a0eb322aa92177204a10a..57e27a3e0bcac7c6e2bae75f83fa9540d690f4b0 100644 (file)
@@ -33,9 +33,13 @@ curl -s --header "Accept: application/json" \
     tail -n +2 > ${WORKSPACE}/projects.json
 for p in `cat ${WORKSPACE}/projects.json | python ${WORKSPACE}/parse_json.py`
 do
+    # Ignore non-projects and archived projects
     if [ "$p" == "All-Users" ] || \
+       [ "$p" == "affinity" ] || \
        [ "$p" == "integration" ] || \
-       [ "$p" == "net-virt-platform" ]
+       [ "$p" == "net-virt-platform" ] || \
+       [ "$p" == "opendove" ] || \
+       [ "$p" == "plugin2oc" ]
     then
         continue
     fi