From 8389e0d18bad7fa76c8ac4651c1e9aee07e06518 Mon Sep 17 00:00:00 2001 From: Deepshikha Date: Fri, 14 Jul 2017 11:30:34 +0530 Subject: Added a cppcheck job to jenkins pipelines Change-Id: I9466288a31c07870ffb2af9087465cb5d44b6270 Signed-off-by: Deepshikha --- build-gluster-org/jobs/cppcheck.yml | 47 +++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 build-gluster-org/jobs/cppcheck.yml (limited to 'build-gluster-org/jobs/cppcheck.yml') diff --git a/build-gluster-org/jobs/cppcheck.yml b/build-gluster-org/jobs/cppcheck.yml new file mode 100644 index 0000000..c9e7b4e --- /dev/null +++ b/build-gluster-org/jobs/cppcheck.yml @@ -0,0 +1,47 @@ +- job: + name: cppcheck + node: smoke7 + description: Run cppcheck analysis on gluster code + project-type: freestyle + concurrent: true + + scm: + - git: + branches: + - $GERRIT_BRANCH + refspec: $GERRIT_REFSPEC + choosing-strategy: gerrit + url: https://github.com/gluster/glusterfs + + properties: + - discard-after-x: + x: 30 + - one-build-per-node + + triggers: + - timed: "H 0 * * *" + + builders: + - shell: !include-raw: ../scripts/cppcheck.sh + + publishers: + - cppcheck: + pattern: "**/cppcheck.xml" + display: + - sum: true + - error: true + - warning: true + - information: true + + parameters: + - string: + default: refs/heads/master + description: 'For review 12345 and patch set 6, this will be refs/changes/45/12345/6. Default: Tip of master' + name: GERRIT_REFSPEC + - string: + default: master + description: 'Name of the branch you want to build from. We usually build from master' + name: GERRIT_BRANCH + + wrappers: + - timestamps -- cgit