Add releng repo to security check 81/36081/1
authorAric Gardner <agardner@linuxfoundation.org>
Wed, 14 Jun 2017 03:47:22 +0000 (11:47 +0800)
committerAric Gardner <agardner@linuxfoundation.org>
Wed, 14 Jun 2017 03:47:22 +0000 (11:47 +0800)
some formatting changes to shell script

Change-Id: I301cb4b385df81a81de5ba230c5a4709461703a3
Signed-off-by: Aric Gardner <agardner@linuxfoundation.org>
jjb/ci_gate_security/anteater-report-to-gerrit.sh
jjb/ci_gate_security/opnfv-ci-gate-security.yml

index c0bf9fa..71c5a06 100644 (file)
@@ -4,21 +4,22 @@ set -o pipefail
 export PATH=$PATH:/usr/local/bin/
 EXITSTATUS=0
 
-# If no violations were found, no lint log will exist.
+# This Log should always exist
 if [[ -e securityaudit.log ]] ; then
     echo -e "\nposting security audit report to gerrit...\n"
 
-if grep ERROR securityaudit.log; then 
-EXITSTATUS=1
-fi
-
-    cat securityaudit.log  | awk -F"ERROR -\ " '{print $2}' > shortlog
-
+    #check if log has errors
+    if grep ERROR securityaudit.log; then
+        EXITSTATUS=1
+    fi
+    
+    cat securityaudit.log  | awk -F"ERROR - " '{print $2}' > shortlog
+    
     ssh -p 29418 gerrit.opnfv.org \
         "gerrit review -p $GERRIT_PROJECT \
-         -m \"$(cat shortlog)\" \
-         $GERRIT_PATCHSET_REVISION \
-         --notify NONE"
-
+        -m \"$(cat shortlog)\" \
+        $GERRIT_PATCHSET_REVISION \
+        --notify NONE"
+    
     exit $EXITSTATUS
 fi
index 2270124..e2ad03e 100644 (file)
@@ -1,5 +1,5 @@
 ########################
-# Job configuration for opnfv-lint
+# Job configuration for opnfv-anteater (security audit)
 ########################
 - project:
 
@@ -55,7 +55,7 @@
                     comment-contains-value: 'reverify'
             projects:
               - project-compare-type: 'REG_EXP'
-                project-pattern: 'sandbox'
+                project-pattern: 'sandbox|releng'
                 branches:
                   - branch-compare-type: 'ANT'
                     branch-pattern: '**/{branch}'