有人知道如何在jenkins作业构建控制台中显示超链接(weblink)吗?
我有一个链接,例如www.google.com
而且我想做的是在groovy脚本中定义它,以便它在Jenkins作业构建页面上的参数下显示为可单击的超链接。
我的时髦看起来像这样。
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被打印出来,但不可点击。
有什么建议吗?
我看过this,但似乎无法解决。
import hudson.console.ModelHyperlinkNote
pipeline
{
stages
{
stage('sample')
{
steps
{
script
{
println hudson.console.ModelHyperlinkNote.encodeTo('http://www.google.com', 'google')
}
}
}
}
}