summaryrefslogtreecommitdiffstats
path: root/job-cfg
diff options
context:
space:
mode:
authorPhilip Hands <phil@hands.com>2015-06-04 08:48:33 +0100
committerPhilip Hands <phil@hands.com>2015-06-04 10:30:24 +0100
commit02603fcfdd077cb821c9273274ab3bb274ed828c (patch)
treec4f2d448ddee60237595715599f051949eab5946 /job-cfg
parent3a0a7979287ed04d1a887143ecf061ec63abee3d (diff)
downloadjenkins.debian.net-02603fcfdd077cb821c9273274ab3bb274ed828c.tar.xz
d-i.yaml.py: de-dup {do_not_edit}
Diffstat (limited to 'job-cfg')
-rwxr-xr-xjob-cfg/d-i.yaml.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/job-cfg/d-i.yaml.py b/job-cfg/d-i.yaml.py
index ad7155e4..3ae6e5fe 100755
--- a/job-cfg/d-i.yaml.py
+++ b/job-cfg/d-i.yaml.py
@@ -165,17 +165,17 @@ def svn_desc(po, fmt):
s = 'Builds the {languagename} ' + fmt + ' version of the installation-guide for all architectures. '
s += 'Triggered by SVN commits to <code>svn://anonscm.debian.org/svn/d-i/trunk/manual'
s += '/po' if po else ''
- s += '/{lang}/<code>. After successful build <a href="https://jenkins.debian.net/job/d-i_manual_{lang}_html">d-i_manual_{lang}_pdf</a> is triggered. {do_not_edit}'
+ s += '/{lang}/<code>. After successful build <a href="https://jenkins.debian.net/job/d-i_manual_{lang}_html">d-i_manual_{lang}_pdf</a> is triggered.'
return s
def pdf_desc():
- s = 'Builds the {languagename} pdf version of the installation-guide for all architectures. Triggered by successful build of <a href="https://jenkins.debian.net/job/d-i_manual_{lang}_html">d-i_manual_{lang}_html</a>. {do_not_edit}'
+ s = 'Builds the {languagename} pdf version of the installation-guide for all architectures. Triggered by successful build of <a href="https://jenkins.debian.net/job/d-i_manual_{lang}_html">d-i_manual_{lang}_html</a>.'
return s
def instguide_desc():
- return 'Builds the installation-guide package. Triggered by SVN commits to <code>svn://anonscm.debian.org/svn/d-i/</code> matching these patterns: <pre>{include}</pre> {do_not_edit}'
+ return 'Builds the installation-guide package. Triggered by SVN commits to <code>svn://anonscm.debian.org/svn/d-i/</code> matching these patterns: <pre>{include}</pre>'
def lr(keep):
@@ -246,6 +246,8 @@ def jobspec_svn(key, name, desc=None, defaults=None,
else:
if fmt != None:
j['description'] = svn_desc(po=po,fmt=fmt)
+ j['description'] += ' {do_not_edit}'
+
if defaults != None:
j['defaults'] = defaults
if trigger != None: