Jenkins管道失败,文件读取出现错误替换错误

时间:2018-09-15 21:46:48

标签: jenkins groovy jenkins-pipeline

我正在编写脚本化管道,作为多分支管道的一部分,在该分支中,我需要从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 }
}

1 个答案:

答案 0 :(得分:1)

简短答案

使用new File步骤代替使用JsonSlurperreadJSON

长答案

您的脚本中存在多个问题:

  1. 您不能在管道中使用File对象。实际上,您可以但那些文件将始终在Jenkins主文件上被引用,并且需要禁用沙箱。您无法使用File对象从构建代理读取文件。而是使用管道步骤readFile
  2. JsonSlurper无法用于普通的管道代码,因为它未实现Serializable接口。您将需要将所有内容封装在@NonCPS方法内。但是,您不应该这样做,因为@NonCPS代码无法在重启后中止或继续,并且存在readJSON Pipeline Utility步骤。