Renames securityscanning to securityaudit 47/26247/1
authorlukehinds <lhinds@redhat.com>
Mon, 19 Dec 2016 13:37:47 +0000 (13:37 +0000)
committerlukehinds <lhinds@redhat.com>
Mon, 19 Dec 2016 13:37:47 +0000 (13:37 +0000)
`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>
jjb/securityaudit/opnfv-security-audit.yml [moved from jjb/securityscanning/opnfv-security-scan.yml with 80% similarity]

similarity index 80%
rename from jjb/securityscanning/opnfv-security-scan.yml
rename to jjb/securityaudit/opnfv-security-audit.yml
index 96f64a8..680be20 100644 (file)
@@ -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}'
 
             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
             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
             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"