From 9077d99a2378354f810429b838e83810668ebb49 Mon Sep 17 00:00:00 2001 From: Philip Hands Date: Mon, 21 Dec 2015 23:03:48 +0100 Subject: discard python script in favour of yaml interpolation --- job-cfg/d-i-overview.yaml | 62 +++++++++++++++++++++++++++++++++++ job-cfg/d-i-overview.yaml.py | 77 -------------------------------------------- 2 files changed, 62 insertions(+), 77 deletions(-) create mode 100644 job-cfg/d-i-overview.yaml delete mode 100755 job-cfg/d-i-overview.yaml.py (limited to 'job-cfg') diff --git a/job-cfg/d-i-overview.yaml b/job-cfg/d-i-overview.yaml new file mode 100644 index 00000000..19fb0ca6 --- /dev/null +++ b/job-cfg/d-i-overview.yaml @@ -0,0 +1,62 @@ +- defaults: + name: d-i + project-type: freestyle + logrotate: + daysToKeep: 90 + numToKeep: 30 + artifactDaysToKeep: -1 + artifactNumToKeep: -1 + 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/d-i_misc/ + text: Misc debian-installer jobs + icon: /userContent/images/debian-jenkins-24x24.png + - sidebar: + url: http://www.profitbricks.co.uk + text: Sponsored by Profitbricks + icon: /userContent/images/profitbricks-24x24.png + +- job-template: + defaults: d-i + name: '{name}_overview_{arch}' + description: 'Parses d-i build overview for problems on {arch} from http://d-i.debian.org/daily-images/daily-build-overview.html daily. {do_not_edit}' + builders: + - shell: '/srv/jenkins/bin/d-i_overview.sh {arch}' + triggers: + - timed: "0 * * * *" + publishers: + - logparser: + parse-rules: '/srv/jenkins/logparse/debian-installer.rules' + unstable-on-warning: 'true' + fail-on-error: 'true' + - email-ext: + recipients: 'qa-jenkins-scm@lists.alioth.debian.org' + first-failure: true + fixed: true + subject: '$BUILD_STATUS: $JOB_NAME/$BUILD_NUMBER' + attach-build-log: false + body: 'See http://d-i.debian.org/daily-images/daily-build-overview.html#{arch} or $BUILD_URL and $BUILD_URL/console' + +- project: + name: d-i + do_not_edit: '

Job configuration source is d-i-overview.yaml.py.' + arch: + - amd64 + - arm64 + - armel + - armhf + - hurd-i386 + - i386 + - kfreebsd-amd64 + - kfreebsd-i386 + - mips + - mipsel + - powerpc + - ppc64el + - s390x + jobs: + - '{name}_overview_{arch}': diff --git a/job-cfg/d-i-overview.yaml.py b/job-cfg/d-i-overview.yaml.py deleted file mode 100755 index 821dd2c1..00000000 --- a/job-cfg/d-i-overview.yaml.py +++ /dev/null @@ -1,77 +0,0 @@ -#!/usr/bin/python - -archs = """ - amd64 - arm64 - armel - armhf - hurd-i386 - i386 - kfreebsd-amd64 - kfreebsd-i386 - mips - mipsel - powerpc - ppc64el - s390x - """.split() - -print(""" -- defaults: - name: d-i - project-type: freestyle - logrotate: - daysToKeep: 90 - numToKeep: 30 - artifactDaysToKeep: -1 - artifactNumToKeep: -1 - 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/d-i_misc/ - text: Misc debian-installer jobs - icon: /userContent/images/debian-jenkins-24x24.png - - sidebar: - url: http://www.profitbricks.co.uk - text: Sponsored by Profitbricks - icon: /userContent/images/profitbricks-24x24.png -""") - -for arch in sorted(archs): - print("""- job-template: - defaults: d-i - name: '{name}_overview_%(arch)s' - description: 'Parses d-i build overview for problems on %(arch)s from http://d-i.debian.org/daily-images/daily-build-overview.html daily. {do_not_edit}' - builders: - - shell: '/srv/jenkins/bin/d-i_overview.sh %(arch)s' - triggers: - - timed: "0 * * * *" - publishers: - - logparser: - parse-rules: '/srv/jenkins/logparse/debian-installer.rules' - unstable-on-warning: 'true' - fail-on-error: 'true' - - email-ext: - recipients: 'qa-jenkins-scm@lists.alioth.debian.org' - first-failure: true - fixed: true - subject: '$BUILD_STATUS: $JOB_NAME/$BUILD_NUMBER' - attach-build-log: false - body: 'See http://d-i.debian.org/daily-images/daily-build-overview.html#%(arch)s or $BUILD_URL and $BUILD_URL/console' -""" % dict(arch=arch)) - -print(""" -- project: - name: d-i - do_not_edit: '

Job configuration source is d-i-overview.yaml.py.' - jobs:""") -for arch in sorted(archs): - print(""" - '{name}_overview_%(arch)s'""" - % dict(arch=arch)) - - - - -- cgit v1.2.3-54-g00ecf