summaryrefslogtreecommitdiffstats
path: root/job-cfg/debsums-tests.yaml
diff options
context:
space:
mode:
authorAxel Beckert <abe@deuxchevaux.org>2015-03-26 21:13:50 +0100
committerHolger Levsen <holger@layer-acht.org>2015-03-27 18:47:04 +0100
commitdbe54fa106bec332b02bc383ea1af881cb84c7ed (patch)
tree50f810f36f3f7a17e3ef8626bdd75266142d9ece /job-cfg/debsums-tests.yaml
parent943f1533ddd7131d8baea2d1d341984bab777986 (diff)
downloadjenkins.debian.net-dbe54fa106bec332b02bc383ea1af881cb84c7ed.tar.xz
Add a job for debsums tests
Diffstat (limited to 'job-cfg/debsums-tests.yaml')
-rw-r--r--job-cfg/debsums-tests.yaml74
1 files changed, 74 insertions, 0 deletions
diff --git a/job-cfg/debsums-tests.yaml b/job-cfg/debsums-tests.yaml
new file mode 100644
index 00000000..28e15f3f
--- /dev/null
+++ b/job-cfg/debsums-tests.yaml
@@ -0,0 +1,74 @@
+- defaults:
+ name: debsums-tests
+ project-type: freestyle
+ properties:
+ - sidebar:
+ url: https://jenkins.debian.net/userContent/about.html
+ text: About jenkins.debian.net
+ icon: /userContent/images/debian-swirl-24x24.png
+ - sidebar:
+ url: https://jenkins.debian.net/view/qa.debian.org/
+ text: Jobs for Debian QA related packages
+ icon: /userContent/images/debian-jenkins-24x24.png
+ - sidebar:
+ url: http://www.profitbricks.com
+ text: Sponsored by Profitbricks
+ icon: /userContent/images/profitbricks-24x24.png
+ description: '{my_description}<br><br>Job configuration source is <a href="http://anonscm.debian.org/cgit/qa/jenkins.debian.net.git/tree/job-cfg/debsums-tests.yaml">debsums-tests.yaml</a>.'
+ logrotate:
+ daysToKeep: 90
+ numToKeep: 30
+ artifactDaysToKeep: -1
+ artifactNumToKeep: -1
+ scm:
+ - git:
+ url: 'git://anonscm.debian.org/pkg-perl/packages/debsums.git'
+ branches:
+ - master
+ builders:
+ - shell: '/srv/jenkins/bin/chroot-run.sh {my_distro} {my_shell}'
+
+- job-template:
+ defaults: debsums-tests
+ name: '{name}_wheezy'
+ publishers:
+ - email:
+ recipients: 'jenkins+debian-qa qa-jenkins-scm@lists.alioth.debian.org pkg-perl-maintainers@lists.alioth.debian.org'
+
+- job-template:
+ defaults: debsums-tests
+ name: '{name}_jessie'
+ publishers:
+ - email:
+ recipients: 'jenkins+debian-qa qa-jenkins-scm@lists.alioth.debian.org pkg-perl-maintainers@lists.alioth.debian.org'
+ - trigger:
+ project: '{my_trigger}'
+
+- job-template:
+ defaults: debsums-tests
+ name: '{name}_sid'
+ triggers:
+ - pollscm: '*/6 * * * *'
+ publishers:
+ - email:
+ recipients: 'jenkins+debian-qa qa-jenkins-scm@lists.alioth.debian.org pkg-perl-maintainers@lists.alioth.debian.org'
+ - trigger:
+ project: '{my_trigger}'
+
+- project:
+ name: debsums-tests
+ jobs:
+ - '{name}_sid':
+ my_distro: 'sid'
+ my_shell: 'timeout 5m prove -v'
+ my_description: 'Debian/Debsums testsuite running on sid.'
+ my_trigger: 'debsums-tests_jessie'
+ - '{name}_jessie':
+ my_distro: 'jessie'
+ my_shell: 'timeout 5m prove -v'
+ my_description: 'Debian/Debsums testsuite running on jessie.'
+ my_trigger: 'debsums-tests_wheezy'
+ - '{name}_wheezy':
+ my_distro: 'wheezy backports'
+ my_shell: 'timeout 5m prove -v'
+ my_description: 'Debian/Debsums testsuite running on wheezy (backports).'