From 4aee67534287a04e9ce6e84607ce3a293faa5cea Mon Sep 17 00:00:00 2001 From: Niels de Vos Date: Fri, 29 Nov 2024 14:58:14 +0100 Subject: [PATCH] ci: increase e2e run timeout with 30 minutes When VolumeGroupSnapshot tests are included, 120 minutes is not sufficient anymore. Add another 30 minutes to the timeout, so that the e2e run can finish. Signed-off-by: Niels de Vos --- mini-e2e-helm.groovy | 2 +- mini-e2e.groovy | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mini-e2e-helm.groovy b/mini-e2e-helm.groovy index 0f44261eb..e261b4057 100644 --- a/mini-e2e-helm.groovy +++ b/mini-e2e-helm.groovy @@ -197,7 +197,7 @@ node('cico-workspace') { } } stage('run e2e') { - timeout(time: 120, unit: 'MINUTES') { + timeout(time: 150, unit: 'MINUTES') { def t_type = "" if ("${test_type}" == "cephfs"){ t_type = '--test-cephfs=true --test-rbd=false --test-nfs=false' diff --git a/mini-e2e.groovy b/mini-e2e.groovy index be37a8b39..77fe2e016 100644 --- a/mini-e2e.groovy +++ b/mini-e2e.groovy @@ -184,7 +184,7 @@ node('cico-workspace') { ssh "./podman2minikube.sh docker.io/library/vault:1.8.5" } stage('run e2e') { - timeout(time: 120, unit: 'MINUTES') { + timeout(time: 150, unit: 'MINUTES') { def t_type = "" if ("${test_type}" == "cephfs"){ t_type = "--test-cephfs=true --test-rbd=false --test-nfs=false"