From c03296b3f87a2c3b6b9589ca4b5f90800b2d3d30 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Budai?= Date: Thu, 14 Jan 2021 18:41:43 +0100 Subject: [PATCH] schutzbot: prolong the timeout to 12 hours MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit With our limited number of machines in OpenStack, we cannot run unlimited jobs in parallel. When there's a lot of activity in the repository, there's a high probability that a job must wait for a free VM for quite a long. In these cases, tests commonly fail due to the timeout. I decided to prolong the timeout to 12 hours. This should lower the amount of these kinds of jobs. Signed-off-by: Ondřej Budai --- schutzbot/Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schutzbot/Jenkinsfile b/schutzbot/Jenkinsfile index 4d5c9b326..b6eb759a8 100644 --- a/schutzbot/Jenkinsfile +++ b/schutzbot/Jenkinsfile @@ -11,7 +11,7 @@ pipeline { ansiColor('xterm') // Cancel the pipeline if it runs for more than three hours. timeout( - time: 3, + time: 12, unit: "HOURS" ) }