diff options
author | Holger Levsen <holger@layer-acht.org> | 2014-12-23 17:24:41 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2014-12-23 17:24:41 +0100 |
commit | edd05945eb4123f25c805592d4ec03c82b1c6da7 (patch) | |
tree | 6166806a89234ad2a74820be9bccee9786c41067 | |
parent | 12ffcf67b7269b0a9e2673c3d385ecd21a6d05f9 (diff) | |
download | jenkins.debian.net-edd05945eb4123f25c805592d4ec03c82b1c6da7.tar.xz |
lvc: throttle down to one concurrent run for now
-rw-r--r-- | job-cfg/lvc.yaml.py | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/job-cfg/lvc.yaml.py b/job-cfg/lvc.yaml.py index 9dce44f4..ec4809f6 100644 --- a/job-cfg/lvc.yaml.py +++ b/job-cfg/lvc.yaml.py @@ -21,6 +21,7 @@ print(""" - defaults: name: lvc project-type: freestyle + description: '{my_description}<br><br>Job configuration source is <a href="http://anonscm.debian.org/cgit/qa/jenkins.debian.net.git/tree/job-cfg/lvc.yaml.py">lvc.yaml.py</a>.' properties: - sidebar: url: https://jenkins.debian.net/userContent/about.html @@ -34,7 +35,13 @@ print(""" url: http://www.profitbricks.com text: Sponsored by Profitbricks icon: /userContent/images/profitbricks-24x24.png - description: '{my_description}<br><br>Job configuration source is <a href="http://anonscm.debian.org/cgit/qa/jenkins.debian.net.git/tree/job-cfg/lvc.yaml.py">lvc.yaml.py</a>.' + - throttle: + max-total: 1 + max-per-node: 1 + enabled: true + option: category + categories: + - lvc logrotate: daysToKeep: 90 numToKeep: 20 |