Does anyone know how to display a hyperlink (weblink) in a jenkins job build console?
I have a link, for example, www.google.com
And what I would like to do, is define this in my groovy script so that it appears as a hyperlink on the Jenkins job description.
My groovy looks like this.
String jobName = "test"
String displayString = "test_job"
String web = "www.google.com"
String webPage = "<a href=${web}>webPage</a>"
pipelineJob(jobName) {
displayName(displayString)
parameters {
stringParam('XXX', '', 'address: webPage')
www.google.com gets printed out but it's not clickable.
Any suggestions, please?
I've looked this this but can't seem to work it out.