summaryrefslogtreecommitdiffstats
path: root/job-cfg
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2017-10-23 14:23:03 +0200
committerHolger Levsen <holger@layer-acht.org>2017-10-23 14:23:03 +0200
commit2e98abc7a2eae041cc2cb947810d4f912924e903 (patch)
tree9c03ffa5734398e056a2120f45e3d197b143af0c /job-cfg
parent0cbebaf3c6315a1a1b79a36f238765d33e0307fe (diff)
downloadjenkins.debian.net-2e98abc7a2eae041cc2cb947810d4f912924e903.tar.xz
new script and job to find obsolete transitional packages in (currently) buster
Signed-off-by: Holger Levsen <holger@layer-acht.org>
Diffstat (limited to 'job-cfg')
-rw-r--r--job-cfg/obsolete-transitional.yaml73
1 files changed, 73 insertions, 0 deletions
diff --git a/job-cfg/obsolete-transitional.yaml b/job-cfg/obsolete-transitional.yaml
new file mode 100644
index 00000000..96f48638
--- /dev/null
+++ b/job-cfg/obsolete-transitional.yaml
@@ -0,0 +1,73 @@
+- defaults:
+ name: obsolete-transitional
+ 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/haskell/
+ text: Haskell packages metadata consistency
+ icon: /userContent/images/debian-jenkins-24x24.png
+ - sidebar:
+ url: http://www.profitbricks.co.uk
+ 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/bin/find_obsolete_transitional_packages.sh {my_distro} "{my_suites}"'
+ publishers:
+ - logparser:
+ parse-rules: '/srv/jenkins/logparse/obsolete-transitional.rules'
+ unstable-on-warning: 'false'
+ fail-on-error: 'false'
+ - email:
+ recipients: '{my_recipients}'
+ #- plot:
+ # - title: Stats
+ # yaxis: Packages
+ # group: PlotGroup
+ # csv-file-name: package-plan-stats.csv
+ # series:
+ # - file: stats.csv
+ # format: csv
+ # # inclusion-flag: exclude-by-string
+ # # exclude: total
+ # - title: Totals
+ # yaxis: Packages
+ # group: PlotGroup
+ # style: area
+ # series:
+ # - file: stats.csv
+ # format: csv
+ # # inclusion-flag: include-by-string
+ # # exclude: total
+ - naginator:
+ progressive-delay-increment: 5
+ progressive-delay-maximum: 15
+ max-failed-builds: 5
+ regular-expression: 'Caused by: hudson.plugins.git.GitException: Command "git fetch'
+
+- job-template:
+ defaults: obsolete-transitional
+ name: '{name}'
+ triggers:
+ - pollscm:
+ cron: '*/6 * * * *'
+ - timed: '0 16 * * *' # every day at 16:00 UTC
+
+- project:
+ name: obsolete-transitional
+ do_not_edit: '<br>Find obsolete transitional packages.'
+ jobs:
+ - '{name}_buster':
+ my_distro: 'buster'
+ my_suites: 'jessie stretch sid'
+ my_description: 'Find obsolete transitional packages in buster.'
+ my_recipients: 'jenkins+debian-qa qa-jenkins-scm@lists.alioth.debian.org'