fixing parsing function

This commit is contained in:
Roberto Cirillo 2022-04-26 16:45:58 +02:00
parent 0af35b9518
commit d4b7687246
1 changed files with 2 additions and 14 deletions

16
Jenkinsfile vendored
View File

@ -147,18 +147,6 @@ pipeline {
@NonCPS
def parseDeployComponent(def deployList) {
println "Going to parsing file ${deployList}"
new File("${deployList}").splitEachLine(',') {
fields -> println fields[0] +" " + fields[1]
}
// def components = []
// "${deployList}".splitEachLine(',') { columns ->
// // if (columns[0].startsWith('#') || columns[0].startsWith('Component'))
// // return
// components.add([
// name : columns[1],
// version : columns[2]
// ]
// )
// }
// return components
String deploy= new File("${deployList}").text
println "deploying: ${deploy}"
}