From 1d59881e904732034b20999c79b3484779be1dc5 Mon Sep 17 00:00:00 2001 From: Roberto Cirillo Date: Wed, 27 Apr 2022 11:44:39 +0200 Subject: [PATCH] testing readCSV function --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 04b5337..ce6663b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -141,7 +141,7 @@ pipeline { @NonCPS def parseDeployComponent(def deployList) { println "Going to parsing file ${deployList}" - content = readFile("${previous_report_file}") + def content = readCSV( file : "${previous_report_file}") println "JOB REPORT CONTENT: ${content}" def components = [] content.splitEachLine(/,/) { columns ->