generated from gCubeCI/Pipeline-Docker-Template
add delete file after the (simulate) deploy of all components
This commit is contained in:
parent
dfec47ad91
commit
d1bcc91df4
|
@ -67,8 +67,9 @@ pipeline {
|
||||||
def components = parseCSVList(deployList)
|
def components = parseCSVList(deployList)
|
||||||
assert 0 < components.size(): "No component found"
|
assert 0 < components.size(): "No component found"
|
||||||
for (component in components) {
|
for (component in components) {
|
||||||
println "$component"
|
println "Deploy on going of component: $component"
|
||||||
}
|
}
|
||||||
|
new File(${DEPLOY_FILE}).delete();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue