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:
parent
d38ca1b71e
commit
8febd4d53d
|
@ -82,7 +82,7 @@ pipeline {
|
||||||
steps { script {
|
steps { script {
|
||||||
/* Temporary hack-fix for failing Linux builds:
|
/* Temporary hack-fix for failing Linux builds:
|
||||||
* https://github.com/status-im/infra-ci/issues/88 */
|
* https://github.com/status-im/infra-ci/issues/88 */
|
||||||
timeout(10) { retry(10) {
|
timeout(10) { retry(20) {
|
||||||
sh 'make nim_status_client'
|
sh 'make nim_status_client'
|
||||||
} }
|
} }
|
||||||
} }
|
} }
|
||||||
|
|
|
@ -100,7 +100,7 @@ pipeline {
|
||||||
steps { script {
|
steps { script {
|
||||||
/* Temporary hack-fix for failing Linux builds:
|
/* Temporary hack-fix for failing Linux builds:
|
||||||
* https://github.com/status-im/infra-ci/issues/88 */
|
* https://github.com/status-im/infra-ci/issues/88 */
|
||||||
timeout(10) { retry(10) {
|
timeout(10) { retry(20) {
|
||||||
sh 'make nim_status_client'
|
sh 'make nim_status_client'
|
||||||
} }
|
} }
|
||||||
} }
|
} }
|
||||||
|
|
Loading…
Reference in New Issue