diff options
author | Philip Hands <phil@hands.com> | 2015-06-04 08:48:33 +0100 |
---|---|---|
committer | Philip Hands <phil@hands.com> | 2015-06-04 10:30:24 +0100 |
commit | 02603fcfdd077cb821c9273274ab3bb274ed828c (patch) | |
tree | c4f2d448ddee60237595715599f051949eab5946 /job-cfg | |
parent | 3a0a7979287ed04d1a887143ecf061ec63abee3d (diff) | |
download | jenkins.debian.net-02603fcfdd077cb821c9273274ab3bb274ed828c.tar.xz |
d-i.yaml.py: de-dup {do_not_edit}
Diffstat (limited to 'job-cfg')
-rwxr-xr-x | job-cfg/d-i.yaml.py | 8 |
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: |