add delete file after the (simulate) deploy of all components

This commit is contained in:
Roberto Cirillo 2022-04-27 16:24:12 +02:00
parent dfec47ad91
commit d1bcc91df4
1 changed files with 2 additions and 1 deletions

3
Jenkinsfile vendored
View File

@ -67,8 +67,9 @@ pipeline {
def components = parseCSVList(deployList)
assert 0 < components.size(): "No component found"
for (component in components) {
println "$component"
println "Deploy on going of component: $component"
}
new File(${DEPLOY_FILE}).delete();
}
}
}