diff options
author | lukehinds <lhinds@redhat.com> | 2016-12-19 13:37:47 +0000 |
---|---|---|
committer | lukehinds <lhinds@redhat.com> | 2016-12-19 13:37:47 +0000 |
commit | 4beba61b493bdc9fd969b3de2b948b3f2678338e (patch) | |
tree | c533743422ad9467a3cddb1756213efe61401b53 /jjb | |
parent | 9c1fe32e69e3b174e6fb753a89c366e7165dc5c3 (diff) |
Renames securityscanning to securityaudit
`securityscanning` is a namespace already used by a OPNFV project,
so renaming CI security audit objects in releng to securityaudit
to save any confusion between projects
Change-Id: If35bf026e36b7fd7159aa9c158af03ea6ec2526e
Signed-off-by: lukehinds <lhinds@redhat.com>
Diffstat (limited to 'jjb')
-rw-r--r-- | jjb/securityaudit/opnfv-security-audit.yml (renamed from jjb/securityscanning/opnfv-security-scan.yml) | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/jjb/securityscanning/opnfv-security-scan.yml b/jjb/securityaudit/opnfv-security-audit.yml index 96f64a8cc..680be20d2 100644 --- a/jjb/securityscanning/opnfv-security-scan.yml +++ b/jjb/securityaudit/opnfv-security-audit.yml @@ -8,7 +8,7 @@ project: anteaterfw jobs: - - 'opnfv-security-scan-verify-{stream}' + - 'opnfv-security-audit-verify-{stream}' stream: - master: @@ -20,7 +20,7 @@ # job templates ######################## - job-template: - name: 'opnfv-security-scan-verify-{stream}' + name: 'opnfv-security-audit-verify-{stream}' disabled: '{obj:disabled}' @@ -62,13 +62,13 @@ notbuilt: true builders: - - security-scan-python-code - - report-security-scan-result-to-gerrit + - security-audit-python-code + - report-security-audit-result-to-gerrit ######################## # builder macros ######################## - builder: - name: security-scan-python-code + name: security-audit-python-code builders: - shell: | #!/bin/bash @@ -77,10 +77,10 @@ set -o xtrace export PATH=$PATH:/usr/local/bin/ - # this is where the security/license scan script will be executed + # this is where the security/license audit script will be executed echo "Hello World!" - builder: - name: report-security-scan-result-to-gerrit + name: report-security-audit-result-to-gerrit builders: - shell: | #!/bin/bash @@ -90,15 +90,15 @@ export PATH=$PATH:/usr/local/bin/ # If no violations were found, no lint log will exist. - if [[ -e securityscan.log ]] ; then - echo -e "\nposting security scan report to gerrit...\n" + if [[ -e securityaudit.log ]] ; then + echo -e "\nposting security audit report to gerrit...\n" - cat securityscan.log + cat securityaudit.log echo ssh -p 29418 gerrit.opnfv.org \ "gerrit review -p $GERRIT_PROJECT \ - -m \"$(cat securityscan.log)\" \ + -m \"$(cat securityaudit.log)\" \ $GERRIT_PATCHSET_REVISION \ --notify NONE" |