Hi,
I have a question about the Jenkins gerri-code-review-plugin.
We are currently using the gerrit-trigger plugin and had to declare the checkout scm step to explicitly use the full syntax to use GERRIT_* job parameters.
checkout([$class: 'GitSCM', branches: [[name: "*/${GERRIT_BRANCH}"]], doGenerateSubmoduleConfigurations: false, extensions: [[$class: 'BuildChooserSetting', buildChooser: [$class: 'GerritTriggerBuildChooser']], [$class: 'LocalBranch', localBranch: "change-${GERRIT_CHANGE_NUMBER}-${GERRIT_PATCHSET_NUMBER}"]], submoduleCfg: [], userRemoteConfigs: [[credentialsId: 'blah', ref spec: "${GERRIT_REFSPEC}", url: 'https://review.server/project']]])
Does the gerrit-code-review-plugin helps in this matter ?
According to the doc, only checkout scm seems required.
Does it handle GERRIT_* stuff by itself ?
Thanks,
IG