diff options
author | Joachim Breitner <mail@joachim-breitner.de> | 2014-04-13 23:49:40 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2014-04-14 16:46:29 +0200 |
commit | 48e50ec52b56f09f16ad66590b6d23af049b3cb9 (patch) | |
tree | 461981828634ba3cd9ccf6c9e99937a9671d9cc2 /job-cfg | |
parent | 49f0127885fc2f80dcda2e4edfbf30ce9fcede6c (diff) | |
download | jenkins.debian.net-48e50ec52b56f09f16ad66590b6d23af049b3cb9.tar.xz |
First stab at a Haskell Metadata checking job
Diffstat (limited to 'job-cfg')
-rw-r--r-- | job-cfg/haskell-packages.yaml | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/job-cfg/haskell-packages.yaml b/job-cfg/haskell-packages.yaml new file mode 100644 index 00000000..23a24964 --- /dev/null +++ b/job-cfg/haskell-packages.yaml @@ -0,0 +1,42 @@ +- defaults: + name: haskell-packages + project-type: freestyle + 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/haskell-packages/ + text: Haskell packages metadata consistency + icon: /userContent/images/debian-jenkins-24x24.png + - sidebar: + url: http://www.profitbricks.com + text: Sponsored by Profitbricks + icon: /userContent/images/profitbricks-24x24.png + description: '{my_description}{do_not_edit}' + logrotate: + daysToKeep: 365 + numToKeep: 365 + artifactDaysToKeep: -1 + artifactNumToKeep: -1 + builders: + - shell: '/srv/jenkins/bin/chroot-run.sh {my_distro} {my_shell}' + publishers: + - email: + recipients: '{my_recipients}' + +- job-template: + defaults: haskell-packages + triggers: + - pollscm: '*/6 * * * *' + +- project: + name: haskell-packages + 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/haskell-packages.yaml">haskell-packages.yaml</a>.' + jobs: + - 'haskell-packages': + my_distro: 'sid' + my_shell: 'apt-get install cabal-install darcs libtext-patch-perl; cabal update; darcs get http://anonscm.debian.org/darcs/pkg-haskell/tools/; cd tools/all-packages; perl ./test-packages.pl' + my_description: 'Haskell Metadata sanity checks' + my_recipients: 'jenkins+debian-qa holger@layer-acht.org pkg-haskell-maintainers@lists.debian.org' |