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=f426669dd26e7d24ce6a13bc0af38d43be758658;hp=6a5a0a5511eee3c84e749834f50a5b354399b9e6;hpb=69591a53f460f0a174b274f643a44f9102d2d78a;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 6a5a0a551..51a8ac47b 100644 --- a/jjb/ci_gate_security/anteater-report-to-gerrit.sh +++ b/jjb/ci_gate_security/anteater-report-to-gerrit.sh @@ -1,19 +1,28 @@ #!/bin/bash -set -o errexit +# SPDX-license-identifier: Apache-2.0 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" - cat securityaudit.log | awk -F"ERROR\ \-\ " '{print $2}' > shortlog + #check if log has errors + if grep ERROR securityaudit.log; then + EXITSTATUS=1 + fi - ssh -p 29418 gerrit.opnfv.org \ - "gerrit review -p $GERRIT_PROJECT \ - -m \"$(cat shortlog)\" \ - $GERRIT_PATCHSET_REVISION \ - --notify NONE" + grep 'ERROR' securityaudit.log | awk -F"ERROR - " '{ print $2 }' | tr -d "\'\"" > shortlog - exit 1 + # 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