Jenkins获取构建人信息

插件:Build User Vars Plugin

这个插件已经很久不更新了,但是还能用

在自由风格的job中使用需要在job的构建环境里面勾选Set jenkins user build variables,然后在下面就可以获取到构建人的信息了

变量说明可参考插件说明

插件官网以及源码github里都没有说明怎么在pipeline里面使用。

可参考https://stackoverflow.com/questions/35902664/get-user-name-from-jenkins-workflow-pipeline-plugin#35902865

pipeline
{
    agent { label 'test' } 

    stages
    {

        
        stage('test')
        {
            steps
            {
                wrap([$class: 'BuildUser'])
                {
                    echo "full name is $BUILD_USER"
                    echo "user id is $BUILD_USER_ID"
                    echo "user email is $BUILD_USER_EMAIL"
                }
                
            }
        }
                              
        stage('Test')
        {
            steps
            {
                echo 'Testing..'
            }
        }
                      
        stage('Deploy')
        {
            steps
            {
                echo 'Deploying....'
            }
        }
    }
}

 

你可能感兴趣的:(持续集成)