From 2abc28ec4f923eaf5c7f478bc10c47ad4561df67 Mon Sep 17 00:00:00 2001 From: yellow-shine Date: Wed, 23 Oct 2024 17:45:34 +0800 Subject: [PATCH] enhance: [2.4]update nightly ci (#36423) https://github.com/milvus-io/milvus/pull/37080 1. enhance: send email to qa when nightly ci failure Signed-off-by: Yellow Shine --- ci/jenkins/Nightly2.groovy | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/ci/jenkins/Nightly2.groovy b/ci/jenkins/Nightly2.groovy index 5534799b9f..3b609e9c27 100644 --- a/ci/jenkins/Nightly2.groovy +++ b/ci/jenkins/Nightly2.groovy @@ -145,4 +145,13 @@ pipeline { } } } + post { + unsuccessful { + container('jnlp') { + script { + sendEmail.toQA() + } + } + } + } }