Add stage to generate release notes.
This commit is contained in:
parent
e45029eef6
commit
c741682ce0
|
@ -224,6 +224,17 @@ pipeline {
|
|||
}
|
||||
}
|
||||
}
|
||||
stage('generate release notes') {
|
||||
steps {
|
||||
script {
|
||||
def pjob = build(job: 'gCube-ReleaseNotes', wait: true, propagate: true,
|
||||
parameters: [[$class: 'StringParameterValue', name: 'report_file', value: "${agent_root_folder}/build_jobs.${env.BUILD_NUMBER}.csv"],
|
||||
[$class: 'BooleanParameterValue', name: 'use_report_commits', value: true]]
|
||||
)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// post-build actions
|
||||
|
|
Loading…
Reference in New Issue