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
The following commit(s) were added to refs/heads/devel-camel-20383 by this push:
new 7d77344e773 Added missing steps
7d77344e773 is described below
commit 7d77344e7730f96472cbf08f130df21a0a62e57e
Author: Otavio Rodolfo Piske <[email protected]>
AuthorDate: Mon Apr 8 13:35:11 2024 +0200
Added missing steps
---
Jenkinsfile.matrix.platform | 16 +++++++++-------
1 file changed, 9 insertions(+), 7 deletions(-)
diff --git a/Jenkinsfile.matrix.platform b/Jenkinsfile.matrix.platform
index 09f7e124e77..de8d3e4a7c1 100644
--- a/Jenkinsfile.matrix.platform
+++ b/Jenkinsfile.matrix.platform
@@ -152,13 +152,15 @@ pipeline {
}
}
stage('Email') {
- post {
- always {
- emailext(
- subject: '${DEFAULT_SUBJECT}',
- body: '${DEFAULT_CONTENT}',
- recipientProviders: [[$class:
'DevelopersRecipientProvider']]
- )
+ steps {
+ post {
+ always {
+ emailext(
+ subject: '${DEFAULT_SUBJECT}',
+ body: '${DEFAULT_CONTENT}',
+ recipientProviders: [[$class:
'DevelopersRecipientProvider']]
+ )
+ }
}
}
}