blob: 400fadfc993758de317a908cd737fa0a1f4dc382 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
- defaults:
name: lintian-tests
project-type: freestyle
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: lintian test jobs
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}{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 {my_distro} {my_shell}'
publishers:
- email:
recipients: '{my_recipients}'
- job-template:
defaults: lintian-tests
name: '{name}_wheezy'
- job-template:
defaults: lintian-tests
name: '{name}_jessie'
publishers:
- trigger:
project: '{name}_wheezy'
- job-template:
defaults: lintian-tests
name: '{name}_sid'
triggers:
- pollscm: '*/6 * * * *'
publishers:
- trigger:
project: '{name}_jessie'
- project:
name: lintian-tests
do_not_edit: '<br><br>Job configuration source is <a href="http://anonscm.debian.org/gitweb/?p=qa/jenkins.debian.net.git;a=blob;f=job-cfg/lintian-tests.yaml">lintian-tests.yaml</a>.'
gitrepo: 'git://anonscm.debian.org/lintian/lintian.git'
jobs:
- '{name}_sid':
my_distro: 'sid'
my_shell: 'debian/rules runtests'
my_description: 'Debian/Lintian testsuite running on sid.'
my_recipients: 'jenkins+debian-qa holger@layer-acht.org lintian-maint@debian.org'
- '{name}_jessie':
my_distro: 'jessie'
my_shell: 'debian/rules runtests'
my_description: 'Debian/Lintian testsuite running on jessie.'
my_recipients: 'jenkins+debian-qa holger@layer-acht.org lintian-maint@debian.org'
- '{name}_wheezy':
my_distro: 'wheezy+backports'
my_shell: 'debian/rules runtests'
my_description: 'Debian/Lintian testsuite running on wheezy.'
my_recipients: 'jenkins+debian-qa holger@layer-acht.org lintian-maint@debian.org'
|