schutzbot: prolong the timeout to 12 hours

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 <ondrej@budai.cz>
This commit is contained in:
Ondřej Budai 2021-01-14 18:41:43 +01:00 committed by Ondřej Budai
parent 7f5e36dd94
commit c03296b3f8

View file

@ -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"
)
}