diff options
author | Antonio Terceiro <terceiro@debian.org> | 2013-06-15 21:30:50 -0300 |
---|---|---|
committer | Antonio Terceiro <terceiro@debian.org> | 2013-06-15 21:35:46 -0300 |
commit | c10ca898d958a035635e54b461b753846e75ebf0 (patch) | |
tree | acded64fe39bf53b18fefdb0ae58c6aeaca843e8 | |
parent | 3631d3531e10a9915f51619ae4575cae31b76d7e (diff) | |
download | jenkins.debian.net-c10ca898d958a035635e54b461b753846e75ebf0.tar.xz |
Add Ruby QA jobs
-rw-r--r-- | job-cfg/ruby-qa.yaml | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/job-cfg/ruby-qa.yaml b/job-cfg/ruby-qa.yaml new file mode 100644 index 00000000..0132ccbb --- /dev/null +++ b/job-cfg/ruby-qa.yaml @@ -0,0 +1,53 @@ +- defaults: + name: ruby-qa + description: 'Debian/Ruby QA checks.{do_not_edit}' + logrotate: + daysToKeep: 365 + numToKeep: 365 + artifactDaysToKeep: -1 + artifactNumToKeep: -1 + scm: + - git: + url: '{gitrepo}' + branches: + - master + builders: + - shell: '/srv/jenkins/bin/chroot-run.sh {distro} {my_shell}' + publishers: + - email: + recipients: 'jenkins+debian-ruby terceiro@debian.org' + properties: + - sidebar: + url: http://jenkins.debian.net/userContent/about.html + text: About jenkins.debian.net + icon: /userContent/images/debian-swirl-24x24.png +- sidebar: + url: http://jenkins.debian.net/view/jenkins.d.n/ + text: Housekeeping jobs + icon: /userContent/images/debian-jenkins-24x24.png +- sidebar: + url: http://www.profitbricks.com + text: Sponsored by Profitbricks + icon: /userContent/images/profitbricks-24x24.png + +- job-template: + defaults: ruby-qa + name: 'ruby-qa' + +- project: + name: ruby-qa + do_not_edit: '<br><br>Job configuration source is <a href="http://anonscm.debian.org/gitweb/?p=users/holger/jenkins.debian.net.git;a=blob;f=job-cfg/ruby-qa.yaml">ruby-qa.yaml</a>.' + jobs: + - '{name}_unstable': + triggers: + - timed: "31 3 * * *" + distro: 'unstable' + gitrepo: 'git://anonscm.debian.org/pkg-ruby-extras/ruby-debian-qa.git' + my_shell: './ci-build' + - '{name}_testing': + triggers: + - timed: "31 4 * * *" + distro: 'testing' + gitrepo: 'git://anonscm.debian.org/pkg-ruby-extras/ruby-debian-qa.git' + my_shell: './ci-build' + |