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 <ndevos@ibm.com>
This commit is contained in:
Niels de Vos 2024-11-29 14:58:14 +01:00 committed by mergify[bot]
parent 364bbb2f2e
commit 4aee675342
2 changed files with 2 additions and 2 deletions

View File

@ -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'

View File

@ -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"