From 2b5496a7d5a125ed1a36c7cb49f18aaf8f1298ad Mon Sep 17 00:00:00 2001 From: Thanh Ha Date: Wed, 23 Dec 2015 16:13:39 -0500 Subject: [PATCH] Add inactive projects to excludes list Change-Id: I5fea84a0573500ae376d3a2166eef5e7880074bb Signed-off-by: Thanh Ha --- jjb/include-raw-check-poms.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/jjb/include-raw-check-poms.sh b/jjb/include-raw-check-poms.sh index aa01f5889..57e27a3e0 100644 --- a/jjb/include-raw-check-poms.sh +++ b/jjb/include-raw-check-poms.sh @@ -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 -- 2.36.6