ci: bump macos job timeout to 25 minutes
For some release builds the notarization step fails because Apple backend takes too long to return results. But the timeout triggered is the Jenkins job timeout and no the notarization timeout. Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
parent
9f9d0a4e87
commit
6c1e04b673
|
@ -21,7 +21,7 @@ pipeline {
|
||||||
options {
|
options {
|
||||||
timestamps()
|
timestamps()
|
||||||
/* Prevent Jenkins jobs from running forever */
|
/* Prevent Jenkins jobs from running forever */
|
||||||
timeout(time: 20, unit: 'MINUTES')
|
timeout(time: 25, unit: 'MINUTES')
|
||||||
/* manage how many builds we keep */
|
/* manage how many builds we keep */
|
||||||
buildDiscarder(logRotator(
|
buildDiscarder(logRotator(
|
||||||
numToKeepStr: '10',
|
numToKeepStr: '10',
|
||||||
|
|
Loading…
Reference in New Issue