diff options
author | Philip Hands <phil@hands.com> | 2017-01-25 11:50:18 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2017-01-25 11:55:44 +0100 |
commit | fc52c12a31b7abe3c7033462156dbab514210c82 (patch) | |
tree | 3a677da7178f84cd51ac32917efd2e1b389f05af /job-cfg | |
parent | c38ffaffb0595be4c5ec155072ed44565ee656ab (diff) | |
download | jenkins.debian.net-fc52c12a31b7abe3c7033462156dbab514210c82.tar.xz |
d-i: pass non_{po,pdf}_langs as params to aid checking manuals
Signed-off-by: Holger Levsen <holger@layer-acht.org>
Diffstat (limited to 'job-cfg')
-rwxr-xr-x | job-cfg/d-i.yaml.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/job-cfg/d-i.yaml.py b/job-cfg/d-i.yaml.py index 574c94e3..f34413b9 100755 --- a/job-cfg/d-i.yaml.py +++ b/job-cfg/d-i.yaml.py @@ -395,7 +395,7 @@ data.append( 'name': '{name}_check_jenkins_jobs', 'description': 'Checks daily for missing jenkins jobs. {do_not_edit}', 'triggers': [{'timed': '23 0 * * *'}], - 'builders': [{'shell': '/srv/jenkins/bin/d-i_check_jobs.sh'}], + 'builders': [{'shell': '{0} "{1}" "{2}"'.format('/srv/jenkins/bin/d-i_check_jobs.sh', ':'.join(non_po_langs), ':'.join(non_pdf_langs))}], 'publishers': [ {'logparser': {'parse-rules': '/srv/jenkins/logparse/debian.rules', 'unstable-on-warning': 'true', |