summaryrefslogtreecommitdiffstats
path: root/job-cfg/rebootstrap.yaml
blob: de476b0fa89852807246e93444c2119ba66de240 (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
- defaults:
    name: rebootstrap
    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/rebootstrap/
          text: All rebootstrap jobs
          icon: /userContent/images/debian-jenkins-24x24.png
      - sidebar:
          url: http://www.profitbricks.com
          text: Sponsored by Profitbricks
          icon: /userContent/images/profitbricks-24x24.png
      - priority:
          job-prio: '150'
      - throttle:
          max-total: 2
          max-per-node: 2
          enabled: True
          option: category
          categories:
            - rebootstrap
    description: '{my_description}{do_not_edit}'
    logrotate:
      daysToKeep: 365
      numToKeep: 365
      artifactDaysToKeep: -1
      artifactNumToKeep: -1
    scm:
      - git:
          url: 'git://anonscm.debian.org/users/helmutg/rebootstrap.git'
          branches:
            - jenkins
    builders:
      - shell: '/srv/jenkins/bin/chroot-run.sh sid ./bootstrap.sh HOST_ARCH={my_arch} {my_params}'
    publishers:
      - email:
          recipients: 'jenkins+debian-bootstrap helmutg@debian.org holger@layer-acht.org'
      - logparser:
          parse-rules: '/srv/jenkins/logparse/rebootstrap.rules'
          unstable-on-warning: 'false'
          fail-on-error: 'false'
    triggers:
      - pollscm: '*/6 * * * *'
      - timed: '55 11 * * 0'    # every sunday at 11:55

- job-template:
    defaults: rebootstrap
    name: '{name}_arm64'

- job-template:
    defaults: rebootstrap
    name: '{name}_arm64_gcc49'

- job-template:
    defaults: rebootstrap
    name: '{name}_arm64_multilib'

- job-template:
    defaults: rebootstrap
    name: '{name}_arm64_gcc49_multilib'

- job-template:
    defaults: rebootstrap
    name: '{name}_m68k'

- job-template:
    defaults: rebootstrap
    name: '{name}_m68k_gcc49'

- job-template:
    defaults: rebootstrap
    name: '{name}_x32'

- job-template:
    defaults: rebootstrap
    name: '{name}_x32_gcc49'

- job-template:
    defaults: rebootstrap
    name: '{name}_x32_multilib'

- job-template:
    defaults: rebootstrap
    name: '{name}_x32_gcc49_multilib'


- project:
    name: rebootstrap
    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/rebootstrap.yaml">rebootstrap.yaml</a>.'
    jobs:
        - '{name}_arm64':
            my_arch: 'arm64'
            my_params: ''
            my_description: 'Verify bootstrappability of Debian for arm64'
        - '{name}_arm64_gcc49':
            my_arch: 'arm64'
            my_params: 'GCC_VER=4.9'
            my_description: 'Verify bootstrappability of Debian using gcc-4.9 for arm64'
        - '{name}_arm64_multilib':
            my_arch: 'arm64'
            my_params: 'ENABLE_MULTILIB=yes'
            my_description: 'Verify bootstrappability of Debian with multilib for arm64'
        - '{name}_arm64_gcc49_multilib':
            my_arch: 'arm64'
            my_params: 'GCC_VER=4.9 ENABLE_MULTILIB=yes'
            my_description: 'Verify bootstrappability of Debian using gcc-4.9 with multilib for arm64'
        - '{name}_m68k':
            my_arch: 'm68k'
            my_params: ''
            my_description: 'Verify bootstrappability of Debian for m68k'
        - '{name}_m68k_gcc49':
            my_arch: 'm68k'
            my_params: 'GCC_VER=4.9'
            my_description: 'Verify bootstrappability of Debian using gcc-4.9 for m68k'
        - '{name}_x32':
            my_arch: 'x32'
            my_params: ''
            my_description: 'Verify bootstrappability of Debian for x32'
        - '{name}_x32_gcc49':
            my_arch: 'x32'
            my_params: 'GCC_VER=4.9'
            my_description: 'Verify bootstrappability of Debian using gcc-4.9 for x32'
        - '{name}_x32_multilib':
            my_arch: 'x32'
            my_params: 'ENABLE_MULTILIB=yes'
            my_description: 'Verify bootstrappability of Debian with multilib for x32'
        - '{name}_x32_gcc49_multilib':
            my_arch: 'x32'
            my_params: 'GCC_VER=4.9 ENABLE_MULTILIB=yes'
            my_description: 'Verify bootstrappability of Debian using gcc-4.9 with multilib for x32'