diff options
author | Magnus Granberg <zorry@gentoo.org> | 2022-07-26 13:53:52 +0200 |
---|---|---|
committer | Magnus Granberg <zorry@gentoo.org> | 2022-07-26 13:53:52 +0200 |
commit | ae8716fd198fb5502781e4e6147f59bb19361b21 (patch) | |
tree | 7bf2f0bc4c7593e8b35233504093b10bb3f2bb00 /buildbot_gentoo_ci | |
parent | Use Webhook for Gitlab and use git@ for repo's (diff) | |
download | tinderbox-cluster-ae8716fd198fb5502781e4e6147f59bb19361b21.tar.gz tinderbox-cluster-ae8716fd198fb5502781e4e6147f59bb19361b21.tar.bz2 tinderbox-cluster-ae8716fd198fb5502781e4e6147f59bb19361b21.zip |
Set 1H for timeout
Signed-off-by: Magnus Granberg <zorry@gentoo.org>
Diffstat (limited to 'buildbot_gentoo_ci')
-rw-r--r-- | buildbot_gentoo_ci/steps/logs.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/buildbot_gentoo_ci/steps/logs.py b/buildbot_gentoo_ci/steps/logs.py index e139cf9..164bb24 100644 --- a/buildbot_gentoo_ci/steps/logs.py +++ b/buildbot_gentoo_ci/steps/logs.py @@ -120,7 +120,7 @@ class SetupParserBuildLoger(BuildStep): self.aftersteps_list.append(steps.FileDownload( mastersrc=mastersrc_log, workerdest=log_cpv['full_logname'] - )) + )) # Upload log parser py code self.aftersteps_list.append(steps.FileDownload( mastersrc=mastersrc_py, @@ -145,7 +145,8 @@ class SetupParserBuildLoger(BuildStep): flunkOnFailure = True, command=command, strip=False, - extract_fn=PersOutputOfLogParser + extract_fn=PersOutputOfLogParser, + timeout=3600 )) yield self.build.addStepsAfterCurrentStep(self.aftersteps_list) return SUCCESS |