Add stage to generate release notes.

This commit is contained in:
Manuele Simi 2020-06-07 23:33:26 -04:00
parent e45029eef6
commit c741682ce0
1 changed files with 11 additions and 0 deletions

11
Jenkinsfile vendored
View File

@ -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 // post-build actions