X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=jjb%2Fci_gate_security%2Fanteater-report-to-gerrit.sh;h=a749d1db494a671c507144bd070fb46c56b08a9f;hb=92b17b6d5507c241e02d97d7f1f2f0a01dec0125;hp=c0bf9fa5b07d38ad5cb65389a408df0ec3fbc637;hpb=8d9872ca78b2352b30c38c763d5e0c4eed3b4522;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 c0bf9fa5b..a749d1db4 100644 --- a/jjb/ci_gate_security/anteater-report-to-gerrit.sh +++ b/jjb/ci_gate_security/anteater-report-to-gerrit.sh @@ -1,24 +1,25 @@ #!/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" -if grep ERROR securityaudit.log; then -EXITSTATUS=1 -fi + #check if log has errors + if grep ERROR securityaudit.log; then + EXITSTATUS=1 + fi - cat securityaudit.log | awk -F"ERROR -\ " '{print $2}' > shortlog + awk -F"ERROR - " '{print $2}' securityaudit.log | sed -e "s/\"/\\\\\"/g;s/\'/\\\\/g"> 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