This is an automated email from the ASF dual-hosted git repository. orpiske pushed a commit to branch devel-camel-20383 in repository https://gitbox.apache.org/repos/asf/camel.git
commit 8990d29b4673f74757d55cef09f31e6da3874e15 Author: Vaishnavi R <[email protected]> AuthorDate: Wed Apr 10 11:24:04 2024 +0530 Updated matrix post build steps. --- Jenkinsfile.matrix.platform | 21 ++++++++------------- 1 file changed, 8 insertions(+), 13 deletions(-) diff --git a/Jenkinsfile.matrix.platform b/Jenkinsfile.matrix.platform index aaca5a90ad7..ebf227ee236 100644 --- a/Jenkinsfile.matrix.platform +++ b/Jenkinsfile.matrix.platform @@ -151,19 +151,14 @@ pipeline { } } } - stage('Email') { - steps { - echo "Sending report CI email for developers" - post { - always { - emailext( - subject: '${DEFAULT_SUBJECT}', - body: '${DEFAULT_CONTENT}', - recipientProviders: [[$class: 'DevelopersRecipientProvider']] - ) - } - } - } + } + post { + always { + emailext( + subject: '${DEFAULT_SUBJECT}', + body: '${DEFAULT_CONTENT}', + recipientProviders: [[$class: 'DevelopersRecipientProvider']] + ) } } }
