summaryrefslogtreecommitdiffstats
path: root/job-cfg/schroot.yaml
blob: e6845e2a510e5c4576f6036a1b93564e8f7605cf (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
- defaults:
        name: schroot-create
        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/d-i_misc/
                        text: misc d-i 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
        logrotate:
                daysToKeep: 90
                numToKeep: 30
                artifactDaysToKeep: -1
                artifactNumToKeep: -1
        publishers:
                - email:
                        recipients: 'jenkins+debian-qa qa-jenkins-scm@lists.alioth.debian.org'
        triggers:
                - timed: '{my_time}'
        description: 'Create {my_schroot} schroot.<br>{do_not_edit}'
        block-downstream: yes
        builders:
                - shell: '/srv/jenkins/bin/schroot-create.sh {my_schroot} {my_distro} {my_extra_pkgs}'

- defaults:
        name: schroot-upgrade
        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/d-i_misc/
                        text: misc d-i 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
        logrotate:
                daysToKeep: 90
                numToKeep: 30
                artifactDaysToKeep: -1
                artifactNumToKeep: -1
        publishers:
                - email:
                        recipients: 'jenkins+debian-qa qa-jenkins-scm@lists.alioth.debian.org'
        triggers:
                - timed: '{my_time}'
        description: 'Upgrade {my_schroot} schroot.<br>{do_not_edit}'
        block-downstream: yes
        builders:
                - shell: 'schroot --directory /root -u root -c source:jenkins-{my_schroot} -- apt-get update'
                - shell: 'schroot --directory /root -u root -c source:jenkins-{my_schroot} -- apt-get -y -u dist-upgrade'
                - shell: 'schroot --directory /root -u root -c source:jenkins-{my_schroot} -- apt-get --purge autoremove'

- job-template:
        defaults: schroot-create
        name: 'd-i_{name}-sid-create'

- job-template:
        defaults: schroot-upgrade
        name: 'd-i_{name}-sid-upgrade'


- project:
        name: schroot
        do_not_edit: '<br><br>Job  configuration source is <a href="https://anonscm.debian.org/git/qa/jenkins.debian.net.git/tree/job-cfg/schroot.yaml">schroot.yaml</a>.'
        jobs:
                - 'd-i_{name}-sid-create':
                        my_schroot: d-i-sid
                        my_distro: sid
                        my_extra_pkgs: 'build-essential debhelper docbook docbook-xml docbook-xsl xsltproc gawk libhtml-parser-perl w3m poxml jadetex openjade dblatex docbook-dsssl ghostscript texlive-xetex lmodern texlive-lang-cyrillic texlive-lang-czechslovak texlive-lang-european texlive-lang-french texlive-lang-german texlive-lang-greek texlive-lang-italian texlive-lang-other texlive-lang-portuguese texlive-lang-spanish ko.tex-base cm-super fonts-wqy-microhei fonts-vlgothic fonts-freefont-ttf'
                        my_time: '1 1 * * 1'    # create it weekly
                - 'd-i_{name}-sid-upgrade':
                        my_schroot: d-i-sid
                        my_time: '0 1 * * *'    # upgrade it daily