summaryrefslogtreecommitdiffstats
path: root/job-cfg
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2014-04-06 04:19:13 +0200
committerHolger Levsen <holger@layer-acht.org>2014-04-06 04:19:13 +0200
commite0f22e1e2ee6f6473c505103e73d4a17382a188f (patch)
tree4d6846bfd2045773c99bfba3fc5fe8cd0d78882d /job-cfg
parent5d82d749e87765487dd01bdc881162b4595b659a (diff)
downloadjenkins.debian.net-e0f22e1e2ee6f6473c505103e73d4a17382a188f.tar.xz
add lintian test jobs supplied by Niels Thykier
Diffstat (limited to 'job-cfg')
-rw-r--r--job-cfg/lintian-tests.yaml67
1 files changed, 67 insertions, 0 deletions
diff --git a/job-cfg/lintian-tests.yaml b/job-cfg/lintian-tests.yaml
new file mode 100644
index 00000000..e6bc46f1
--- /dev/null
+++ b/job-cfg/lintian-tests.yaml
@@ -0,0 +1,67 @@
+- defaults:
+ name: lintian-tests
+ description: 'Debian/Lintian test suite.{do_not_edit}'
+ logrotate:
+ daysToKeep: 365
+ numToKeep: 365
+ artifactDaysToKeep: -1
+ artifactNumToKeep: -1
+ scm:
+ - git:
+ url: '{gitrepo}'
+ branches:
+ - master
+ builders:
+ - shell: '/srv/jenkins/bin/chroot-run.sh {distro} {my_shell}'
+ publishers:
+ - email:
+ recipients: lintian-maint@debian.org
+ properties:
+ - sidebar:
+ url: http://jenkins.debian.net/userContent/about.html
+ text: About jenkins.debian.net
+ icon: /userContent/images/debian-swirl-24x24.png
+ - sidebar:
+ url: http://jenkins.debian.net/view/lintian-tests/
+ text: Misc debian-installer jobs
+ icon: /userContent/images/debian-jenkins-24x24.png
+ - sidebar:
+ url: http://www.profitbricks.com
+ text: Sponsored by Profitbricks
+ icon: /userContent/images/profitbricks-24x24.png
+
+- job-template:
+ defaults: lintian-tests
+ name: '{name}_stable'
+
+- job-template:
+ defaults: lintian-tests
+ name: '{name}_testing'
+
+- job-template:
+ defaults: lintian-tests
+ name: '{name}_unstable'
+
+- project:
+ name: lintian-tests
+ do_not_edit: '<br><br>Job configuration source is <a href="http://anonscm.debian.org/gitweb/?p=users/holger/jenkins.debian.net.git;a=blob;f=job-cfg/lintian-tests.yaml">lintian-tests.yaml</a>.'
+ jobs:
+ - '{name}_unstable':
+ triggers:
+ - timed: "31 6 * * *"
+ distro: 'unstable'
+ gitrepo: 'git://anonscm.debian.org/lintian/lintian.git'
+ my_shell: './ci-run'
+ - '{name}_testing':
+ triggers:
+ - timed: "01 8 * * *"
+ distro: 'testing'
+ gitrepo: 'git://anonscm.debian.org/lintian/lintian.git'
+ my_shell: './ci-run'
+ - '{name}_stable':
+ triggers:
+ - timed: "31 9 * * *"
+ distro: 'stable'
+ gitrepo: 'git://anonscm.debian.org/lintian/lintian.git'
+ my_shell: './ci-run'
+