Fix coverity and add cppcheck to lttng-modules
authorMichael Jeanson <mjeanson@efficios.com>
Thu, 3 Sep 2015 21:09:31 +0000 (17:09 -0400)
committerMichael Jeanson <mjeanson@efficios.com>
Thu, 3 Sep 2015 21:09:31 +0000 (17:09 -0400)
jobs/lttng-modules.yaml

index 30622329cc86aaa8f93813cb865453633ac6eac6..ac30cf09565d18e35c7b4d9a8b0fa2342100739d 100644 (file)
@@ -2,7 +2,8 @@
 - defaults:
     name: lttng-modules
     description: |
-      Build lttng-modules against different Linux kernels.
+      The LTTng modules provide Linux kernel tracing capability to the LTTng
+      2.0 tracer toolset.
 
       <p>Job is managed by Jenkins Job Builder.</p>
 
@@ -79,7 +80,7 @@
       - workspace-cleanup
 
 - job-template:
-    name: lttng-modules_{version}_coverity
+    name: lttng-modules_{mversion}_coverity
     defaults: lttng-modules
     node: 'x86-64'
 
       - pollscm:
           cron: "@daily"
 
+    scm:
+      - git:
+          url: git://github.com/lttng/lttng-modules.git
+          browser: githubweb
+          browser-url: https://github.com/efficios/lttng-modules
+          branches:
+            - "{mversion}"
+
     wrappers:
       - workspace-cleanup
       - timestamps
     publishers:
       - workspace-cleanup
 
+- job-template:
+    name: lttng-modules_{mversion}_cppcheck
+    defaults: lttng-modules
+
+    triggers:
+      - pollscm:
+          cron: "@daily"
+
+    scm:
+      - git:
+          url: git://github.com/lttng/lttng-modules.git
+          browser: githubweb
+          browser-url: https://github.com/efficios/lttng-modules
+          branches:
+            - "{mversion}"
+
+    builders:
+      - shell: |
+          rm -f cppcheck.xml
+          cppcheck --enable=all --xml --xml-version=2 $WORKSPACE 2> cppcheck.xml
+
+    publishers:
+      - archive:
+          artifacts: 'cppcheck.xml'
+          allow-empty: false
+      - cppcheck:
+          pattern: 'cppcheck.xml'
+      - email:
+          recipients: 'ci-notification@lists.lttng.org'
+          notify-every-unstable-build: true
+          send-to-individuals: false
+
+
 ## Project
 - project:
     name: lttng-modules
       #- 'lttng-modules_{mversion}_{kversion}_{buildtype}':
       #    buildtype: portbuild
       #    arch: !!python/tuple [armhf, powerpc]
-      - 'lttng-modules_{version}_coverity':
-          version: master
+      - 'lttng-modules_{mversion}_cppcheck'
+      - 'lttng-modules_{mversion}_coverity':
+          mversion: master
This page took 0.024514 seconds and 4 git commands to generate.