jenkins管道:shell脚本无法获取更新的环境变量

时间:2018-02-13 06:54:59

标签: shell jenkins jenkins-pipeline

在Jenkins中,我希望获得用户输入并传递给shell脚本以供进一步使用 我试图设置为环境变量,但shell脚本无法获取最新值,旧值为echo。

pipeline {
    agent none
    environment{
        myVar='something_default'
    }

    stages {
        stage('First stage') {
            agent none
            steps{
                echo "update myVar by user input"
                script {
                    test = input message: 'Hello',
                    ok: 'Proceed?',
                    parameters: [
                        string(name: 'input', defaultValue: 'update it!', description: '')
                    ]
                    myVar = "${test['input']}"

                }
                echo "${myVar}"  // value is updated
            }
        }
        stage('stage 2') {
            agent any
            steps{
                echo "${myVar}" // try to see can myVar pass between stage and it output expected value
                sh("./someShell.sh") // the script just contain a echo e.g. echo "myVar is ${myVar}"
                                     // it echo the old value. i.e.something_default

            }
        }
    }
}

3 个答案:

答案 0 :(得分:1)

我们在管道脚本中设置的环境变量只能在脚本中访问。因此,即使您将变量声明为全局变量,它也不会在shell脚本中起作用。

只有我能想到的选项是,将其作为参数传递给shell脚本

 sh("./someShell.sh ${myVar}")

编辑: 基于OP的Shell脚本查询更新了答案,用于解析输入

LINE="[fristPara:100, secondPaa:abc]"
LINE=$(echo $LINE | sed 's/\[//g')
LINE=$(echo $LINE | sed 's/\]//g')
while read -d, -r pair; do
  IFS=':' read -r key val <<<"$pair"
  echo "$key = $val"
done <<<"$LINE,

&#34;

答案 1 :(得分:1)

您需要在阶段之间传递变量作为环境变量,例如像这样:

stage("As user for input") {
    steps {
        env.DO_SOMETING = input (...)
        env.MY_VAR = ...
    }
}
stage("Do something") {
    when { environment name: 'DO_SOMETING', value: 'yes' }
    steps {
        echo "DO_SOMETING has the value ${env.DO_SOMETHING}"
        echo "MY_VAR has the value ${env.MY_VAR}"
    }
}

答案 2 :(得分:0)

您必须在全局范围内声明变量,以便两个位置都引用同一个实例。

def myVal

pipeline { ... }