From 3180962640ed9e6ff8802c07adf4b3e19caee4d6 Mon Sep 17 00:00:00 2001 From: Connel McGovern Date: Tue, 14 Mar 2023 11:52:55 +0000 Subject: [PATCH] INFRA-1919 - [C4 Automation] The output of the Git log between the RCs --- .ci/dev/regression/Jenkinsfile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.ci/dev/regression/Jenkinsfile b/.ci/dev/regression/Jenkinsfile index 7115e783a7..7aa8aac1d0 100644 --- a/.ci/dev/regression/Jenkinsfile +++ b/.ci/dev/regression/Jenkinsfile @@ -5,6 +5,10 @@ */ @Library('corda-shared-build-pipeline-steps') +import com.r3.build.utils.GitUtils + +GitUtils gitUtils = new GitUtils(this) + /** * Sense environment */ @@ -295,6 +299,9 @@ pipeline { post { always { script { + if (gitUtils.isReleaseTag()) { + gitUtils.getGitLog(env.TAG_NAME, env.GIT_URL.replace('https://github.com/corda/', ''), scm.userRemoteConfigs[0].credentialsId) + } try { if (params.DO_TEST) { unstash 'allure-input'