-
Improvement
-
Resolution: Unresolved
-
Minor
We miss the ChangelogToBranchTrait.
It would be nice to have this trait, so that the currentBuild.rawBuild.changeSets variable is filled and the emailext plugin can find the developers from the commits.
Actually we must use this code to manually checkout.
checkout([ $class: 'GitSCM', doGenerateSubmoduleConfigurations: scm.doGenerateSubmoduleConfigurations, userRemoteConfigs: scm.userRemoteConfigs // important changes branches: [[name: "FETCH_HEAD"]], extensions: scm.extensions + [[$class: 'LocalBranch'], [$class: 'ChangelogToBranch', options: [compareRemote: 'origin', compareTarget: env.CHANGE_TARGET]]], ])
With this the currentBuild.rawBuild.changeSets variable is filled and all works as aspected.
See also https://issues.jenkins.io/browse/JENKINS-14138 & https://issues.jenkins.io/browse/JENKINS-24638