ci: Increase timeout for mini-e2e job

Due to a strict timeout, the job
tends to abort sometimes. Increasing the
timeout to allow sufficient time for
tests to execute.

Signed-off-by: Yug <yuggupta27@gmail.com>
This commit is contained in:
Yug 2020-08-18 11:37:01 +05:30 committed by mergify[bot]
parent 5830a2f1bf
commit 79adaef3d1

View File

@ -77,7 +77,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'
}
}