我正在编写脚本化管道,作为多分支管道的一部分,在该分支中,我需要从JSON文件读取键值对。在运行管道时,出现以下错误:/home/jenkins/workspace/dMyproject-QRMU74PK33RGCZRTDPVXCWOT55L2NNSXNPY2LJQ5R2UIIYSJR2RQ@tmp/durable-c4b5faa2/script.sh:替换错误
对我的代码进行一些研究后,我发现特别是这一行引起了错误:
String fileContents = new File( ".env" ).text;
但是我找不到,到底是怎么了。我的环境文件看起来像这样:
{
"key" :"value",
"key2" :"value2"
}
import groovy.json.JsonSlurper
import java.io.File
node('google-cloud-node') {
dockerfile {
filename 'BuildDockerfile'
}
currentBuild.result = "SUCCESS"
try {
String dockerFileName = "BuildDockerfile"
def customImage = docker.build("my-image:${env.BUILD_ID}","-f ${dockerFileName} .")
customImage.inside('-u root') {
stage('Checkout'){
checkout scm
}
stage('Build'){
notify("#test-ci-builds","Oh, time to build something!")
sh '''
set +x
whoami
pwd
npm install
npm build
'''
}
stage('Deploy') {
parseArgsFile()
withCredentials([file(credentialsId: "scanner-dev-ssh-service-account", variable: 'ID')]) {
sh '''
set +x
gcloud auth activate-service-account jenkins-test1@scanner-dev-212008.iam.gserviceaccount.com --key-file=$ID --project=scanner-dev-212008
gcloud compute --project scanner-dev-212008 ssh --zone us-west2-a ubuntu@docker-slave --command "uname -a"
'''
}
}
}
}
catch (err) {
notify("#test-ci-builds","Oh, crap!")
currentBuild.result = "FAILURE"
sh 'echo ${env.BUILD_URL}'
throw err
}
}
def notify(channel,text) {
slackSend (channel: "${channel}", message: "${text}", teamDomain: "distillery-tech", token: "0W6205gwiR1CEVOV4iMFiNQw")
}
def parseArgsFile(params=null){
String fileContents = new File( ".env" ).text;
def InputJSON = new JsonSlurper().parseText(inputFile.text)
InputJSON.each{ println it }
}
答案 0 :(得分:1)
使用new File
步骤代替使用JsonSlurper
和readJSON
。
您的脚本中存在多个问题:
File
对象。实际上,您可以但那些文件将始终在Jenkins主文件上被引用,并且需要禁用沙箱。您无法使用File
对象从构建代理读取文件。而是使用管道步骤readFile
JsonSlurper
无法用于普通的管道代码,因为它未实现Serializable
接口。您将需要将所有内容封装在@NonCPS
方法内。但是,您不应该这样做,因为@NonCPS
代码无法在重启后中止或继续,并且存在readJSON
Pipeline Utility步骤。