From 9bc72115797e0a36511b9a3fcc7298752f9f38d9 Mon Sep 17 00:00:00 2001 From: Andreas Jensen Date: Wed, 8 Nov 2023 13:30:17 +0700 Subject: [PATCH] ci: increase overall timeout to 45 and instance timeout to 10 minutes --- jenkinsfiles/canary | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jenkinsfiles/canary b/jenkinsfiles/canary index e8fe05e65c25..666f08e79b71 100644 --- a/jenkinsfiles/canary +++ b/jenkinsfiles/canary @@ -13,7 +13,7 @@ pipeline { options { buildDiscarder(logRotator(numToKeepStr: '5')) - timeout(time: 30) + timeout(time: 45) } environment { @@ -116,7 +116,7 @@ pipeline { dir('scripts/instances') { sh "(./findByName.sh play nightly${branch} && ./restart.sh play nightly${branch}) || ./deploy-dhis2.sh play nightly${branch}" - timeout(5) { + timeout(10) { waitFor.statusOk("${env.INSTANCE_URL}${branch}") } }