无法读取 Jenkins 目录中存在的文件

Not able to read a file present in the directory in Jenkins

我正在尝试读取 jenkins 管道中的文件。我使用 Linux 'tee' 命令创建此文件。 我尝试使用内置的 java 函数读取文件,例如 java.nio 中的 Files.readAllLines 或 java.io 包中的 BufferedReader。 None 两种情况都有效。

我想使用这两种技术或类似技术的原因是因为我必须在共享库而不是 Jenkins 文件中读取此文件。 我尝试在 Jenkins 管道中读取文件,以测试这两种方法是否有效。

如何使用这些技术来读取工作区中已有的文件?

此外,我尝试使用 jenkins readFile 方法并且它有效,但我认为我不能在我的共享库中使用它。

我的 Jenkins 文件是:

import java.io.file.*

pipeline {
agent any

stages {
    stage('Scan Timeout Test') {
        steps {
            script {
                sh '''echo "Running ls before ..."
ls -lt
                '''
                sh 'ls -lt | tee lslog.txt'
                sh '''pwd
                ls -lt
                '''
                getLogs("$WORKSPACE/lslog.txt")
            }
        }
    } //end of stage
  }
}

def getLogs(logPath) throws IOException {
    //println "Reading $logPath..."
    //def text = readFile logPath
    //println text
     /*println "[INFO] Reading Log File: " + Paths.get(logPath).toAbsolutePath().toString()
     try {
       return Files.readAllLines(Paths.get(logPath), StandardCharsets.UTF_8);
     } catch(IOException e){
         println "[ERROR] Failed to read file '"+logPath+"': "+e.getMessage()
         throw e
     }*/
     BufferedReader bufReader = new BufferedReader(new FileReader(logPath)); 
     ArrayList<String> listOfLines = new ArrayList<>(); 
 
     String line = bufReader.readLine(); 
 
     while (line != null) { 
         listOfLines.add(line); 
         line = bufReader.readLine(); 
     }
 
     bufReader.close();
     return listOfLines
}


The output that I get in my Jenkins console is: 
+ pwd
/jenkins/workspace/test
+ ls -lt
total 44
-rw-r--r-- 1 root root   526 Aug 21 11:32 lslog.txt
drwxr-xr-x 2 root root   173 Aug 21 11:32 vars
drwxr-xr-x 3 root root   109 Aug 21 11:32 resources
drwxr-xr-x 4 root root    29 Aug 21 11:32 src
-rw-r--r-- 1 root root 22783 Aug 21 11:32 README.md
-rw-r--r-- 1 root root   602 Aug 21 11:32 build.gradle
drwxr-xr-x 3 root root    21 Aug 21 11:32 gradle
-rw-r--r-- 1 root root  5296 Aug 21 11:32 gradlew
-rw-r--r-- 1 root root  2176 Aug 21 11:32 gradlew.bat
drwxr-xr-x 2 root root   118 Aug 21 11:32 integration-tests
[Pipeline] }
[Pipeline] // script
[Pipeline] }
[Pipeline] // stage
[Pipeline] }
[Pipeline] // withEnv
[Pipeline] }
[Pipeline] // node
[Pipeline] End of Pipeline
java.io.FileNotFoundException: /jenkins/workspace/test/lslog.txt (No such file or directory)
at java.io.FileInputStream.open0(Native Method)

使用 ls -lt,我可以看到我的文件 lslog.txt 已在目录中创建,但我无法读取它。

只要你通过这些步骤,你就可以在共享库中使用readFile。 在 https://www.jenkins.io/doc/book/pipeline/shared-libraries/#accessing-steps

查看文档
package org.foo
class bar {
  static void readFile(filePath, steps) {
    def text = steps.readFile(file: filePath)
  }
}