summaryrefslogtreecommitdiffstats
path: root/job-cfg/torbrowser-launcher.yaml
blob: a36de747677d4c21c48f2d47c429f9d932bbc587 (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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
- defaults:
    name: torbrowser-launcher
    project-type: freestyle
    triggers:
      - timed: '{my_timed}'
    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/torbrowser-launcher
          text: torbrowser-launcher builds jobs
          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>Job configuration source is <a href="http://anonscm.debian.org/cgit/qa/jenkins.debian.net.git/tree/job-cfg/torbrowser-launcher.yaml">torbrowser-launcher.yaml</a>.<br>Results are available at <a href="https://torbrowser-launcher.debian.net/">https://torbrowser-launcher.debian.net</a>.'
    logrotate:
      daysToKeep: 90
      numToKeep: 30
      artifactDaysToKeep: -1
      artifactNumToKeep: -1
    builders:
      - shell: '{my_shell}'
    publishers:
      - logparser:
          parse-rules: '/srv/jenkins/logparse/torbrowser-launcher.rules'
          unstable-on-warning: 'true'
          fail-on-error: 'true'
      - email:
          recipients: '{my_recipients}'
    node: '{my_node}'

- defaults:
    name: torbrowser-launcher_git
    project-type: freestyle
    triggers:
      - timed: '{my_timed}'
      - pollscm: '*/6 * * * *'
    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/torbrowser-launcher
          text: torbrowser-launcher jobs
          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>Job configuration source is <a href="http://anonscm.debian.org/cgit/qa/jenkins.debian.net.git/tree/job-cfg/torbrowser-launcher.yaml">torbrowser-launcher.yaml</a>.<br>Results are available at <a href="https://torbrowser-launcher.debian.net/">https://torbrowser-launcher.debian.net</a>.'
    logrotate:
      daysToKeep: 90
      numToKeep: 20
      artifactDaysToKeep: -1
      artifactNumToKeep: -1
    builders:
      - shell: '{my_shell}'
    publishers:
      - logparser:
          parse-rules: '/srv/jenkins/logparse/torbrowser-launcher.rules'
          unstable-on-warning: 'true'
          fail-on-error: 'true'
      - email:
          recipients: '{my_recipients}'
    scm:
      - git:
          url: '{my_gitrepo}'
          branches:
            - master
    node: '{my_node}'

- job-template:
    defaults: torbrowser-launcher
    name: '{name}_setup_schroot_unstable_amd64'

- job-template:
    defaults: torbrowser-launcher
    name: '{name}_setup_schroot_stretch_amd64'

- job-template:
    defaults: torbrowser-launcher
    name: '{name}_setup_schroot_jessie_amd64'

- job-template:
    defaults: torbrowser-launcher_git
    name: '{name}_test_unstable_amd64'

- job-template:
    defaults: torbrowser-launcher_git
    name: '{name}_test_stretch_amd64'

- job-template:
    defaults: torbrowser-launcher_git
    name: '{name}_test_jessie_amd64'

- project:
    name: torbrowser-launcher
    jobs:
        - '{name}_setup_schroot_unstable_amd64':
            my_description: 'Setup unstable/amd64 schroot for testing torbrowser-launcher.'
            my_timed: '42 1 * * *'
            my_shell: '/srv/jenkins/bin/schroot-create.sh torbrowser-launcher torbrowser-launcher-unstable unstable torbrowser-launcher'
            my_recipients: 'holger@layer-acht.org'
            my_node: ''
        - '{name}_setup_schroot_stretch_amd64':
            my_description: 'Setup stretch/amd64 schroot for testing torbrowser-launcher.'
            my_timed: '42 1 * * *'
            my_shell: '/srv/jenkins/bin/schroot-create.sh torbrowser-launcher torbrowser-launcher-stretch stretch torbrowser-launcher'
            my_recipients: 'holger@layer-acht.org'
            my_node: ''
        - '{name}_setup_schroot_jessie_amd64':
            my_description: 'Setup jessie/amd64 schroot for testing torbrowser-launcher.'
            my_timed: '42 1 * * *'
            my_shell: '/srv/jenkins/bin/schroot-create.sh torbrowser-launcher torbrowser-launcher-jessie jessie torbrowser-launcher'
            my_recipients: 'holger@layer-acht.org'
            my_node: ''
        - '{name}_test_unstable_amd64':
            my_description: 'Test torbrowser-launcher on unstable/amd64 daily and on every commit to GIT.'
            my_timed: '20 24 * * *'
            my_gitrepo: 'git://git.debian.org/git/collab-maint/torbrowser-launcher.git'
            my_shell: '/srv/jenkins/bin/test_torbrowser-launcher.sh unstable'
            my_recipients: 'holger@layer-acht.org'
            my_node: ''
        - '{name}_test_stretch_amd64':
            my_description: 'Test torbrowser-launcher on stretch/amd64 daily and on every commit to GIT.'
            my_timed: '20 24 * * *'
            my_gitrepo: 'git://git.debian.org/git/collab-maint/torbrowser-launcher.git'
            my_shell: '/srv/jenkins/bin/test_torbrowser-launcher.sh stretch'
            my_recipients: 'holger@layer-acht.org'
            my_node: ''
        - '{name}_test_jessie_amd64':
            my_description: 'Test torbrowser-launcher on jessie/amd64 daily and on every commit to GIT.'
            my_timed: '20 24 * * *'
            my_gitrepo: 'git://git.debian.org/git/collab-maint/torbrowser-launcher.git'
            my_shell: '/srv/jenkins/bin/test_torbrowser-launcher.sh jessie'
            my_recipients: 'holger@layer-acht.org'
            my_node: ''