From 4416075a234a5829ea9674241fe77ebe0c597ed6 Mon Sep 17 00:00:00 2001 From: deepshikhaaa Date: Mon, 24 Jul 2017 15:54:20 +0530 Subject: Added a line coverage job in gluster Change-Id: I7fa9e3e52d32451f976dc474e4ad37c42cbeb054 --- build-gluster-org/jobs/lcov.yml | 46 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 build-gluster-org/jobs/lcov.yml (limited to 'build-gluster-org/jobs') diff --git a/build-gluster-org/jobs/lcov.yml b/build-gluster-org/jobs/lcov.yml new file mode 100644 index 0000000..a2146b1 --- /dev/null +++ b/build-gluster-org/jobs/lcov.yml @@ -0,0 +1,46 @@ +- job: + name: line-coverage + node: lcov + description: Checks line coverage by the regression test in gluster + 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/lcov.sh + + publishers: + - html-publisher: + name: "Line Coverage Report" + dir: "coverage/" + files: "index.html" + keep-all: true + link-to-last-build: 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