I know there is $BUILD_STATUS and &BUILD_URL variables in Email-ext plugin. But I cant find anywhere what are all variables available to me... Where can I find them all, like duration time, date etc.?
Well, email-ext has access to all the Jenkins environment variables for jobs. Below is a list in the Jenkins documentation. Some plugins also add their own variables
Edit:
The wiki page says this about tokens: To see a list of all available email tokens and what they display, you can click the "?" (question mark) associated with the Content Token Reference at the top bottom of the email-ext section on the project configuration screen.
YourURL/env-vars.html/
lists all available variables (not including plug-ins).
I encounter this issue in my project. Environment variable defined in pipeline cannot be accessed in emailext body.
Try ${ENV,var="xxx"}, ${xxx} and ${env.xxx}, no one works.
Finally, use following way to fix it.
pipeline {
agent any
environment {
xxx = sh(script: "echo `date -Iseconds`", returnStdout: true).trim()
}
stages {
stage('Test') {
steps {
writeFile file: 'env.properties', text: "xxx=${xxx}"
emailext body: '''${PROPFILE,file="env.properties",property="xxx"}
'''
}
}
}
}
© 2022 - 2024 — McMap. All rights reserved.