diff options
author | Holger Levsen <holger@layer-acht.org> | 2014-12-25 14:05:27 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2014-12-25 14:05:27 +0100 |
commit | 876d1d82cd0eb4f589e2661765ebec98becadde7 (patch) | |
tree | 9a46bfa39276571df64b94520327e73f41f2e246 /job-cfg | |
parent | e44cc629d1929b996ed1f62fde134f91f7030c0a (diff) | |
download | jenkins.debian.net-876d1d82cd0eb4f589e2661765ebec98becadde7.tar.xz |
use Build-timeout Plugin to limit job runtime to 6h for chroot-installations and g-i-installation jobs and to 26h for reproducible_builder jobs
Diffstat (limited to 'job-cfg')
-rwxr-xr-x | job-cfg/chroot-installation.yaml.py | 3 | ||||
-rw-r--r-- | job-cfg/g-i-installation.yaml | 2 | ||||
-rw-r--r-- | job-cfg/reproducible.yaml | 3 |
3 files changed, 8 insertions, 0 deletions
diff --git a/job-cfg/chroot-installation.yaml.py b/job-cfg/chroot-installation.yaml.py index c8242154..4fa2b183 100755 --- a/job-cfg/chroot-installation.yaml.py +++ b/job-cfg/chroot-installation.yaml.py @@ -191,6 +191,9 @@ print(""" option: category categories: - chroot-installation + wrappers: + - timeout: + timeout: 360 """) for base_distro in sorted(base_distros): diff --git a/job-cfg/g-i-installation.yaml b/job-cfg/g-i-installation.yaml index d6295bb3..5f246e68 100644 --- a/job-cfg/g-i-installation.yaml +++ b/job-cfg/g-i-installation.yaml @@ -32,6 +32,8 @@ image-width: 300 wrappers: - live-screenshot + - timeout: + timeout: 360 properties: - sidebar: url: https://jenkins.debian.net/userContent/about.html diff --git a/job-cfg/reproducible.yaml b/job-cfg/reproducible.yaml index 8a4739d0..125177b9 100644 --- a/job-cfg/reproducible.yaml +++ b/job-cfg/reproducible.yaml @@ -100,6 +100,9 @@ categories: - reproducible description: '{my_description}<br>Job configuration source is <a href="http://anonscm.debian.org/cgit/qa/jenkins.debian.net.git/tree/job-cfg/reproducible.yaml">reproducible.yaml</a>.<br>Results are available at <a href="https://reproducible.debian.net/">https://reproducible.debian.net</a>.' + wrappers: + - timeout: + timeout: 1560 logrotate: daysToKeep: 14 numToKeep: 750 |