ci: bump client build retries to 20

10 is just not enough

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2023-06-27 13:37:52 +02:00
parent d38ca1b71e
commit 8febd4d53d
No known key found for this signature in database
GPG Key ID: FE65CD384D5BF7B4
2 changed files with 2 additions and 2 deletions

View File

@ -82,7 +82,7 @@ pipeline {
steps { script {
/* Temporary hack-fix for failing Linux builds:
* https://github.com/status-im/infra-ci/issues/88 */
timeout(10) { retry(10) {
timeout(10) { retry(20) {
sh 'make nim_status_client'
} }
} }

View File

@ -100,7 +100,7 @@ pipeline {
steps { script {
/* Temporary hack-fix for failing Linux builds:
* https://github.com/status-im/infra-ci/issues/88 */
timeout(10) { retry(10) {
timeout(10) { retry(20) {
sh 'make nim_status_client'
} }
} }