[Qa-jenkins-scm] [jenkins.debian.net] 01/01: discard python script in favour of yaml interpolation
Holger Levsen
holger at moszumanska.debian.org
Tue Dec 22 08:51:01 UTC 2015
This is an automated email from the git hooks/post-receive script.
holger pushed a commit to branch master
in repository jenkins.debian.net.
commit 9077d99a2378354f810429b838e83810668ebb49
Author: Philip Hands <phil at hands.com>
Date: Mon Dec 21 23:03:48 2015 +0100
discard python script in favour of yaml interpolation
---
.../{d-i-overview.yaml.py => d-i-overview.yaml} | 57 ++++++++--------------
1 file changed, 21 insertions(+), 36 deletions(-)
diff --git a/job-cfg/d-i-overview.yaml.py b/job-cfg/d-i-overview.yaml
old mode 100755
new mode 100644
similarity index 65%
rename from job-cfg/d-i-overview.yaml.py
rename to job-cfg/d-i-overview.yaml
index 821dd2c..19fb0ca
--- a/job-cfg/d-i-overview.yaml.py
+++ b/job-cfg/d-i-overview.yaml
@@ -1,22 +1,3 @@
-#!/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
@@ -38,15 +19,13 @@ print("""
url: http://www.profitbricks.co.uk
text: Sponsored by Profitbricks
icon: /userContent/images/profitbricks-24x24.png
-""")
-for arch in sorted(archs):
- print("""- job-template:
+- job-template:
defaults: d-i
- name: '{name}_overview_%(arch)s'
- description: 'Parses d-i build overview for problems on %(arch)s from <code>http://d-i.debian.org/daily-images/daily-build-overview.html</code> daily. {do_not_edit}'
+ name: '{name}_overview_{arch}'
+ description: 'Parses d-i build overview for problems on {arch} from <code>http://d-i.debian.org/daily-images/daily-build-overview.html</code> daily. {do_not_edit}'
builders:
- - shell: '/srv/jenkins/bin/d-i_overview.sh %(arch)s'
+ - shell: '/srv/jenkins/bin/d-i_overview.sh {arch}'
triggers:
- timed: "0 * * * *"
publishers:
@@ -60,18 +39,24 @@ for arch in sorted(archs):
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))
+ body: 'See http://d-i.debian.org/daily-images/daily-build-overview.html#{arch} or $BUILD_URL and $BUILD_URL/console'
-print("""
- project:
name: d-i
do_not_edit: '<br><br>Job configuration source is <a href="http://anonscm.debian.org/cgit/qa/jenkins.debian.net.git/tree/job-cfg/d-i-overview.yaml.py">d-i-overview.yaml.py</a>.'
- jobs:""")
-for arch in sorted(archs):
- print(""" - '{name}_overview_%(arch)s'"""
- % dict(arch=arch))
-
-
-
-
+ arch:
+ - amd64
+ - arm64
+ - armel
+ - armhf
+ - hurd-i386
+ - i386
+ - kfreebsd-amd64
+ - kfreebsd-i386
+ - mips
+ - mipsel
+ - powerpc
+ - ppc64el
+ - s390x
+ jobs:
+ - '{name}_overview_{arch}':
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/qa/jenkins.debian.net.git
More information about the Qa-jenkins-scm
mailing list