diff options
author | Philip Hands <phil@hands.com> | 2015-12-11 21:17:04 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-12-11 23:59:29 +0100 |
commit | a3e38b7a433ec21970827ae44461a67c30bfc9a0 (patch) | |
tree | c47a3d55fbc41b05ae543835f636f81567cd1778 /job-cfg | |
parent | f867e496ead02627594a219a6db8845c150bb9fc (diff) | |
download | jenkins.debian.net-a3e38b7a433ec21970827ae44461a67c30bfc9a0.tar.xz |
deal with included-regions, since that was dropped somehow
Diffstat (limited to 'job-cfg')
-rwxr-xr-x | job-cfg/d-i.yaml.py | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/job-cfg/d-i.yaml.py b/job-cfg/d-i.yaml.py index 2641f6e5..b343eaf9 100755 --- a/job-cfg/d-i.yaml.py +++ b/job-cfg/d-i.yaml.py @@ -162,6 +162,8 @@ def scm_svn(po, inc_regs=None): 'viewvc-url': 'http://anonscm.debian.org/viewvc/d-i/trunk'}}] +manual_includes = [ '/trunk/manual/debian/.*', '/trunk/manual/po/.*', '/trunk/manual/doc/.*', '/trunk/manual/scripts/.*' ] + desc_str = { 'html': ( 'Builds the {langname} html version of the installation-guide ' @@ -179,7 +181,7 @@ desc_str = { 'instguide': ( '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>') + 'matching these patterns: <pre>' + str(manual_includes) + '</pre>') } @@ -326,7 +328,7 @@ data.append( trigger='{trg}', priority=125, publishers=[publ_email('debian-boot')], - inc_regs='{include}')) + inc_regs=manual_includes)) data.append( {'job-template': { @@ -428,10 +430,6 @@ data.append( '{name}_maintenance', '{name}_check_jenkins_jobs', {'{name}_manual': { - 'include': ('/trunk/manual/debian/.*\n' - '/trunk/manual/po/.*\n' - '/trunk/manual/doc/.*\n' - '/trunk/manual/scripts/.*'), 'trg': 'H/15 * * * *'}}, '{name}_manual_html_group', '{name}_manual_pdf_group', |