summaryrefslogtreecommitdiffstats
path: root/jjb/ci_gate_security/anteater-report-to-gerrit.sh
blob: c0bf9fa5b07d38ad5cb65389a408df0ec3fbc637 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/bash
set -o errexit
set -o pipefail
export PATH=$PATH:/usr/local/bin/
EXITSTATUS=0

# If no violations were found, no lint log will 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

    ssh -p 29418 gerrit.opnfv.org \
        "gerrit review -p $GERRIT_PROJECT \
         -m \"$(cat shortlog)\" \
         $GERRIT_PATCHSET_REVISION \
         --notify NONE"

    exit $EXITSTATUS
fi