From d9081d94d1a84ebbe6cf68edefa944835b019b4b Mon Sep 17 00:00:00 2001 From: ThreadDao Date: Tue, 4 Jan 2022 20:57:25 +0800 Subject: [PATCH] [skip e2e] Add scale test post email notify (#14792) Signed-off-by: ThreadDao --- build/ci/jenkins/Scale.groovy | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/build/ci/jenkins/Scale.groovy b/build/ci/jenkins/Scale.groovy index 5eedd1b884..e829a6325a 100644 --- a/build/ci/jenkins/Scale.groovy +++ b/build/ci/jenkins/Scale.groovy @@ -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') {