generated from gCubeCI/Pipeline-Docker-Template
manage comments on deploy file parsing
This commit is contained in:
parent
00f1e7b869
commit
ea8ba55ee2
|
@ -164,6 +164,8 @@ def parseCSVList(def deployList) {
|
||||||
if (fileExists("${deployList}")) {
|
if (fileExists("${deployList}")) {
|
||||||
echo ' file found'
|
echo ' file found'
|
||||||
readFile("${deployList}").split('\n').each { line, count->
|
readFile("${deployList}").split('\n').each { line, count->
|
||||||
|
if (line.startsWith('#'))
|
||||||
|
return
|
||||||
def fields = line.split(',')
|
def fields = line.split(',')
|
||||||
components.add([
|
components.add([
|
||||||
name : fields[0],
|
name : fields[0],
|
||||||
|
@ -192,11 +194,9 @@ def appendToFile(String fileName, String line) {
|
||||||
def appendFooter( def File) {
|
def appendFooter( def File) {
|
||||||
def now = new Date()
|
def now = new Date()
|
||||||
sh("""
|
sh("""
|
||||||
echo "" >> $File
|
echo "#---" >> $File
|
||||||
echo "---" >> $File
|
echo "#generated by the gCubeDeploy pipeline >> $File
|
||||||
echo "*generated by the gCubeDeploy pipeline >> $File
|
echo "#last update $now*" >> $File
|
||||||
echo "" >> $File
|
|
||||||
echo "*last update $now*" >> $File
|
|
||||||
""")
|
""")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue