INFRA-1919 - [C4 Automation] The output of the Git log between the RCs

This commit is contained in:
Connel McGovern 2023-03-14 11:52:55 +00:00
parent 5c68bc89e2
commit 3180962640

View File

@ -5,6 +5,10 @@
*/ */
@Library('corda-shared-build-pipeline-steps') @Library('corda-shared-build-pipeline-steps')
import com.r3.build.utils.GitUtils
GitUtils gitUtils = new GitUtils(this)
/** /**
* Sense environment * Sense environment
*/ */
@ -295,6 +299,9 @@ pipeline {
post { post {
always { always {
script { script {
if (gitUtils.isReleaseTag()) {
gitUtils.getGitLog(env.TAG_NAME, env.GIT_URL.replace('https://github.com/corda/', ''), scm.userRemoteConfigs[0].credentialsId)
}
try { try {
if (params.DO_TEST) { if (params.DO_TEST) {
unstash 'allure-input' unstash 'allure-input'