我刚开始学习groovy。我想在svn copy命令中将svnSourcePath和svnDestPath传递给shell脚本。但是URL没有呈现。
node {
stage 'Copy Svn code'
def svnSourcePath = "${svnBaseURL}${svnAppCode}${svnEnvDev}${SVN_DEV_PACKAGE}"
def svnDestPath = "${svnBaseURL}${svnAppCode}${svnEnvTest}${SVN_DEV_PACKAGE}"
print "DEBUG: svnSourcePath = ${svnSourcePath}"
print "DEBUG: svnDestPath = ${svnDestPath}"
withCredentials([[$class: 'UsernamePasswordMultiBinding', credentialsId: crendentialsIdSVN, passwordVariable: 'SVN_PWD', usernameVariable: 'SVN_USER']]) {
sh '''
svn copy $svnSourcePath $svnDestPath -m 'promote dev to test' --username $SVN_USER --password $SVN_PWD '''
}
}
输出
+ svn copy -m 'promote dev to test' --username techuser --password 'xxxyyy'
svn: E205001: Try 'svn help' for more info
svn: E205001: Not enough arguments provided
答案 0 :(得分:5)
在变量周围添加单引号和加上operater(' +变量+')。现在它正在运作
svn copy '''+svnSourcePath+' '+svnDestPath+''' -m 'promote dev to test' --username $SVN_USER --password $SVN_PWD '''
答案 1 :(得分:2)
+1给Selvam回答
以下是我的参数插件用例
字符串参数名称:pipelineParameter
默认值:4
node {
stage('test') {
withCredentials([[...]]) {
def pipelineValue = "${pipelineParameter}" //declare the parameter in groovy and use it in shellscript
sh '''
echo '''+pipelineValue+' abcd''''
'''
}
}}
以上打印4 abcd
答案 2 :(得分:1)
您可以使用""" content $var """
。 """
允许在此doc中进行字符串插值; '''
没有。
答案 3 :(得分:0)
一次只能使用双引号
stage('test') {
steps {
script {
for(job in env.JOB_NAMES.split(',')) {
println(job);
sh "bash jenkins/script.sh $job"
sh "echo $job"
}
}//end of script
}//end of steps
}//end of stage test
答案 4 :(得分:0)
我在寻找一种在 sh
命令中插入变量值的方法时遇到了这个问题。
单引号 'string'
和三重单引号 '''string'''
字符串都不支持插值。
According to Groovy documentation:
<块引用>单引号字符串是纯java.lang.String,不支持 插值。
三重单引号字符串是普通的 java.lang.String 而不是 支持插值。
因此要在 groovy (GString) 中使用嵌入的字符串值,必须使用双引号,其中的任何 GString 都将被评估,即使它位于单引号字符串中。
sh "git commit -m 'Build-Server: ${server}', during main build."
答案 5 :(得分:0)
如果需要 bash 脚本,您需要执行以下操作:
在全局或本地(函数)级别设置此变量,sh 脚本可以访问这些变量:
def stageOneWorkSpace = "/path/test1"
def stageTwoWorkSpace = "/path/test2"
在shell脚本中像下面这样调用它们
sh '''
echo ''' +stageOneWorkSpace+ '''
echo ''' +stageTwoWorkSpace+ '''
cd ''' +stageOneWorkSpace+ '''
rm -r ''' +stageOneWorkSpace+ '''/AllResults
mkdir -p AllResults
mkdir -p AllResults/test1
mkdir -p AllResults/test2
cp -r ''' +stageOneWorkSpace+'''/qa/results/* ''' +stageOneWorkSpace+'''/AllResults/test1
cp -r ''' +stageTwoWorkSpace+'''/qa/results/* ''' +stageOneWorkSpace+'''/AllResults/test2
'''
答案 6 :(得分:-1)
def my_var = "hai"
sh (
script: "echo " + my_var,
returnStdout: true
)