diff options
author | Aric Gardner <agardner@linuxfoundation.org> | 2017-06-15 03:53:39 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-06-15 03:53:39 +0000 |
commit | e322400772bccaebb82053d4f1e58db037ec2242 (patch) | |
tree | 8a0098a3c52522ac00f2e339b77f1a8a850fcff6 | |
parent | 8d9872ca78b2352b30c38c763d5e0c4eed3b4522 (diff) | |
parent | 3aa337b8e9f38c37d0f6aad0960c4f640116c133 (diff) |
Merge "Add releng repo to security check"
-rw-r--r-- | jjb/ci_gate_security/anteater-report-to-gerrit.sh | 23 | ||||
-rw-r--r-- | jjb/ci_gate_security/opnfv-ci-gate-security.yml | 4 |
2 files changed, 14 insertions, 13 deletions
diff --git a/jjb/ci_gate_security/anteater-report-to-gerrit.sh b/jjb/ci_gate_security/anteater-report-to-gerrit.sh index c0bf9fa5b..71c5a0679 100644 --- a/jjb/ci_gate_security/anteater-report-to-gerrit.sh +++ b/jjb/ci_gate_security/anteater-report-to-gerrit.sh @@ -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 diff --git a/jjb/ci_gate_security/opnfv-ci-gate-security.yml b/jjb/ci_gate_security/opnfv-ci-gate-security.yml index 2270124e7..e2ad03eae 100644 --- a/jjb/ci_gate_security/opnfv-ci-gate-security.yml +++ b/jjb/ci_gate_security/opnfv-ci-gate-security.yml @@ -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}' |