web-dev-qa-db-ja.com

groovy変数をシェルスクリプトに渡す

Groovyの学習を始めたばかりです。svncopyコマンドでsvnSourcePathとsvnDestPathをシェルスクリプトに渡したいです。しかし、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
6

変数の前後に一重引用符とプラス演算子( '+変数+')を追加しました。今それは働いています

svn copy '''+svnSourcePath+' '+svnDestPath+''' -m 'promote dev to test' --username $SVN_USER --password $SVN_PWD '''
7

セルヴァムの答えに+1

以下は、パラメータプラグインの使用例です

文字列パラメータ名:pipelineParameter

デフォルト値:4

node {
  stage('test') {
        withCredentials([[...]]) {
          def pipelineValue = "${pipelineParameter}"  //declare the parameter in groovy and use it in shellscript
          sh '''
             echo '''+pipelineValue+' abcd''''
             '''
        }
}}

上記は4abcdを出力します

3

""" content $var """を使用できます。 """はヒアドキュメントで文字列補間を許可します。 '''はしません。

2
ablarg