blob: 6fb8f348e10fb5e5779858aca01d4a8aae60e55b (
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: udd
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.co.uk
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/udd.yaml">udd.yaml</a>.'
logrotate:
daysToKeep: 90
numToKeep: 20
artifactDaysToKeep: -1
artifactNumToKeep: -1
publishers:
- logparser:
parse-rules: '/srv/jenkins/logparse/debian.rules'
unstable-on-warning: '{my_logparser}'
fail-on-error: '{my_logparser}'
notify-every-unstable-build: false
- email:
recipients: 'jenkins+debian-qa qa-jenkins-scm@lists.alioth.debian.org'
builders:
- shell: '/srv/jenkins/bin/udd-query.sh {my_params}'
triggers:
- timed: '{my_time}'
- job-template:
defaults: udd
name: '{name}_jessie_multiarch_versionskew'
- job-template:
defaults: udd
name: '{name}_stretch_multiarch_versionskew'
- job-template:
defaults: udd
name: '{name}_sid_multiarch_versionskew'
- job-template:
defaults: udd
name: '{name}_orphaned_without_o_bug'
- project:
name: udd
jobs:
- '{name}_jessie_multiarch_versionskew':
my_time: '1 8 1 * *'
my_params: 'multiarch_versionskew jessie'
my_description: 'Detect multi-arch versions skews in jessie.'
my_logparser: 'true'
- '{name}_stretch_multiarch_versionskew':
my_time: '1 8 * * 1'
my_params: 'multiarch_versionskew stretch'
my_description: 'Detect multi-arch versions skews in stretch.'
my_logparser: 'true'
- '{name}_sid_multiarch_versionskew':
my_time: '0 8 * * *'
my_params: 'multiarch_versionskew sid'
my_description: 'Detect multi-arch versions skews in sid.'
my_logparser: 'true'
- '{name}_orphaned_without_o_bug':
my_time: '3 8 * * 1'
my_params: 'orphaned_without_o_bug'
my_description: 'Detect orphaned packages with maintainer set to packages@qa.debian.org but without an "Orphaned" bug against the wnpp pseudo-package.'
my_logparser: 'true'
|