jenkinsfile: bump build timeout

Jenkins build consistently times out due to the enormous tests we have now.
Bumping the timeout to 40 fixes it for now.

Change-Id: Ie96cc5ec3e452744d5a7873853d14befe367bd7e
This commit is contained in:
Clement Sam 2021-09-27 18:29:17 +00:00
parent 8036644422
commit 118e64fa15
2 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ pipeline {
}
}
options {
timeout(time: 36, unit: 'MINUTES')
timeout(time: 40, unit: 'MINUTES')
skipDefaultCheckout(true)
}
environment {

View File

@ -7,7 +7,7 @@ pipeline {
}
}
options {
timeout(time: 36, unit: 'MINUTES')
timeout(time: 40, unit: 'MINUTES')
}
environment {
NPM_CONFIG_CACHE = '/npm/cache'