X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=jjb%2Fci_gate_security%2Fanteater-report-to-gerrit.sh;h=51a8ac47bcc47f0e6fa8e1a385a743a2eb9842b1;hb=358ddec610610851c5fa67024a80f6788f2724d5;hp=00a78ceba9639aa5cd6d74a2d93d96b2dc2424fa;hpb=62b4676cb9b8665403a95b5cc0583a76b76a1f0b;p=releng.git diff --git a/jjb/ci_gate_security/anteater-report-to-gerrit.sh b/jjb/ci_gate_security/anteater-report-to-gerrit.sh index 00a78ceba..51a8ac47b 100644 --- a/jjb/ci_gate_security/anteater-report-to-gerrit.sh +++ b/jjb/ci_gate_security/anteater-report-to-gerrit.sh @@ -6,20 +6,23 @@ EXITSTATUS=0 # This Log should always exist if [[ -e securityaudit.log ]] ; then - echo -e "\nposting security audit report to gerrit...\n" #check if log has errors if grep ERROR securityaudit.log; then EXITSTATUS=1 fi - cat securityaudit.log | awk -F"ERROR - " '{print $2}' | sed -e "s/\"/\\\\\"/g;s/\'/\\\\\'/g"> shortlog + grep 'ERROR' securityaudit.log | awk -F"ERROR - " '{ print $2 }' | tr -d "\'\"" > shortlog - ssh -p 29418 gerrit.opnfv.org \ - "gerrit review -p $GERRIT_PROJECT \ - -m \"$(cat shortlog)\" \ - $GERRIT_PATCHSET_REVISION \ - --notify NONE" + # Only report to Gerrit when there are errors to report. + if [[ -s shortlog ]]; then + echo -e "\nposting security audit report to gerrit...\n" + ssh -p 29418 gerrit.opnfv.org \ + "gerrit review -p $GERRIT_PROJECT \ + -m \"$(cat shortlog)\" \ + $GERRIT_PATCHSET_REVISION \ + --notify NONE" + fi exit $EXITSTATUS fi