本文介绍了从Jenkins Workflow(管道)插件获取用户名的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在Clouldbees的Jenkins中使用Pipeline插件(名称为Workflow插件之前),我试图在Groovy脚本中获取用户名,但我无法实现。
stage'checkout svn'
node('master'){
//获取登录的用户名Jenkins
解决方案
a href =https://wiki.jenkins-ci.org/display/JENKINS/Build+User+Vars+Plugin>建立用户变量插件?如果是这样,你应该可以运行
$ b
node {
wrap([$ class:'BuildUser']) {
def user = env.BUILD_USER_ID
}
}
或类似的。
I am using the Pipeline plugin in Jenkins by Clouldbees (the name was Workflow plugin before), I am trying to get the user name in the Groovy script but I am not able to achieve it.
stage 'checkout svn'
node('master') {
// Get the user name logged in Jenkins
}
解决方案
Did you try installing the Build User Vars plugin? If so, you should be able to run
node {
wrap([$class: 'BuildUser']) {
def user = env.BUILD_USER_ID
}
}
or similar.
这篇关于从Jenkins Workflow(管道)插件获取用户名的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!