diff options
-rw-r--r-- | README | 2 | ||||
-rw-r--r-- | job-cfg/reproducible.yaml | 28 |
2 files changed, 29 insertions, 1 deletions
@@ -125,7 +125,7 @@ Installation tests inside chroot environments. * The (current) purpose of https://reproducible.debian.net is to show the prospects of reproducible builds for Debian. IOW: this is research, showing what could (and should) be done... check https://wiki.debian.org/ReproducibleBuilds for the real status of the project! -* Currently, three suites are tested on amd64: 'testing', 'unstable' and 'experimental'. The tests are done using 'pbuilder' using link:https://wiki.debian.org/ReproducibleBuilds/ExperimentalToolchain[our toolchain] through four builder jobs, alpha, beta, gamma and delta, which are each constantly testing packages and saving the results of these tests. +* Currently, three suites are tested on amd64: 'testing', 'unstable' and 'experimental'. The tests are done using 'pbuilder' using link:https://wiki.debian.org/ReproducibleBuilds/ExperimentalToolchain[our toolchain] through eight concurrent builder jobs which are each constantly testing packages and saving the results of these tests. * The jenkins job overview at https://jenkins.debian.net/view/reproducible/ probably makes it clearer how the job scheduling works in practice. diff --git a/job-cfg/reproducible.yaml b/job-cfg/reproducible.yaml index 061f7dbf..7971cbe4 100644 --- a/job-cfg/reproducible.yaml +++ b/job-cfg/reproducible.yaml @@ -207,6 +207,19 @@ defaults: reproducible_builder name: '{name}_builder_epsilon' +- job-template: + defaults: reproducible_builder + name: '{name}_builder_zeta' + +- job-template: + defaults: reproducible_builder + name: '{name}_builder_eta' + +- job-template: + defaults: reproducible_builder + name: '{name}_builder_theta' + + - project: name: reproducible jobs: @@ -321,3 +334,18 @@ my_timed: 'H/2 * * * *' my_shell: '/srv/jenkins/bin/reproducible_build.sh' my_recipients: 'qa-jenkins-scm@lists.alioth.debian.org' + - '{name}_builder_zeta': + my_description: 'Try to reproducibly build a scheduled package. This is one of several builder jobs.' + my_timed: 'H/2 * * * *' + my_shell: '/srv/jenkins/bin/reproducible_build.sh' + my_recipients: 'qa-jenkins-scm@lists.alioth.debian.org' + - '{name}_builder_eta': + my_description: 'Try to reproducibly build a scheduled package. This is one of several builder jobs.' + my_timed: 'H/2 * * * *' + my_shell: '/srv/jenkins/bin/reproducible_build.sh' + my_recipients: 'qa-jenkins-scm@lists.alioth.debian.org' + - '{name}_builder_theta': + my_description: 'Try to reproducibly build a scheduled package. This is one of several builder jobs.' + my_timed: 'H/2 * * * *' + my_shell: '/srv/jenkins/bin/reproducible_build.sh' + my_recipients: 'qa-jenkins-scm@lists.alioth.debian.org' |