[skip e2e]Add timeout for some stage (#17454)

Signed-off-by: zhuwenxing <wenxing.zhu@zilliz.com>
pull/17458/head
zhuwenxing 2022-06-08 20:36:06 +08:00 committed by GitHub
parent 6d078ebe7a
commit 24a1a013a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -185,6 +185,9 @@ pipeline {
}
}
stage ('Run first test') {
options {
timeout(time: 20, unit: 'MINUTES') // timeout on this stage
}
steps {
container('main') {
dir ('tests/python_client/deploy/scripts') {
@ -293,6 +296,9 @@ pipeline {
}
stage ('Run Second Test') {
options {
timeout(time: 20, unit: 'MINUTES') // timeout on this stage
}
steps {
container('main') {
dir ('tests/python_client/deploy/scripts') {