From e106eed235090cb6076bff0a67dce9ef16d146ed Mon Sep 17 00:00:00 2001 From: Yug Date: Tue, 18 Aug 2020 11:39:12 +0530 Subject: [PATCH] ci: Increase timout for mini-e2e-helm job Increase timeout to provide sufficient time for tests to execute. Signed-off-by: Yug --- mini-e2e-helm.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mini-e2e-helm.groovy b/mini-e2e-helm.groovy index 7a20c3219..d9b2ffe2f 100644 --- a/mini-e2e-helm.groovy +++ b/mini-e2e-helm.groovy @@ -87,7 +87,7 @@ node('cico-workspace') { } } stage('run e2e') { - timeout(time: 60, unit: 'MINUTES') { + timeout(time: 120, unit: 'MINUTES') { ssh "cd /opt/build/go/src/github.com/ceph/ceph-csi && make run-e2e NAMESPACE='${namespace}' E2E_ARGS='--deploy-cephfs=false --deploy-rbd=false'" } }