[skip e2e] Add scale test post email notify (#14792)

Signed-off-by: ThreadDao <yufen.zong@zilliz.com>
This commit is contained in:
ThreadDao 2022-01-04 20:57:25 +08:00 committed by GitHub
parent 3913567cd3
commit d9081d94d1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,6 @@
String cron_timezone = 'TZ=Asia/Shanghai'
String cron_string = BRANCH_NAME == "master" ? "30 20 * * * " : ""
String cron_string = BRANCH_NAME == "master" ? "05 21 * * * " : ""
int total_timeout_minutes = 60
@ -56,6 +56,17 @@ pipeline {
}
}
post {
unsuccessful {
container ('jnlp') {
script {
emailext subject: '$DEFAULT_SUBJECT',
body: '$DEFAULT_CONTENT',
// recipientProviders: [requestor()],
// replyTo: '$DEFAULT_REPLYTO',
to: 'qa@zilliz.com'
}
}
}
always {
container('milvus-test') {
dir ('tests/scripts') {