generated from gCubeCI/Pipeline-Docker-Template
fix readCSV method
This commit is contained in:
parent
cd0e17b759
commit
5ee7960520
|
@ -141,7 +141,7 @@ pipeline {
|
||||||
@NonCPS
|
@NonCPS
|
||||||
def parseDeployComponent(def deployList) {
|
def parseDeployComponent(def deployList) {
|
||||||
println "Going to parsing file ${deployList}"
|
println "Going to parsing file ${deployList}"
|
||||||
def content = readCSV( file : "${deployList}")
|
def content = readCSV file : "${deployList}"
|
||||||
println "JOB REPORT CONTENT: ${content}"
|
println "JOB REPORT CONTENT: ${content}"
|
||||||
def components = []
|
def components = []
|
||||||
content.splitEachLine(/,/) { columns ->
|
content.splitEachLine(/,/) { columns ->
|
||||||
|
|
Loading…
Reference in New Issue