CI: Final version of setting correct gerrit creds

Change-Id: I7729ecceedceb12f52bf18dae259846aa1d993b3
pull/11/head
George Joseph 7 years ago
parent 8e1c541acf
commit e5f30eba79

@ -68,7 +68,6 @@ pipeline {
stage ("Checkout") { stage ("Checkout") {
sh "sudo chown -R jenkins:users ." sh "sudo chown -R jenkins:users ."
env.GERRIT_PROJECT_URL = env.GERRIT_CHANGE_URL.replaceAll(/\/[0-9]+$/, "/${env.GERRIT_PROJECT}") env.GERRIT_PROJECT_URL = env.GERRIT_CHANGE_URL.replaceAll(/\/[0-9]+$/, "/${env.GERRIT_PROJECT}")
sh "printenv | sort"
/* /*
* Jenkins has already automatically checked out the base branch * Jenkins has already automatically checked out the base branch
@ -83,8 +82,10 @@ pipeline {
* We need to retrieve the jenkins2 gerrit https credentials * We need to retrieve the jenkins2 gerrit https credentials
* in case this review is in a restricted project. * in case this review is in a restricted project.
*/ */
withCredentials([usernamePassword(credentialsId: env.JENKINS_GERRIT_CREDS, withCredentials([usernamePassword(credentialsId: "${JENKINS_GERRIT_CREDS}",
usernameVariable: 'gerrit_user')]) { passwordVariable: 'GERRIT_USER_PW', usernameVariable: 'GERRIT_USER_NAME')]) {
sh "printenv | sort"
checkout scm: [$class: 'GitSCM', checkout scm: [$class: 'GitSCM',
branches: [[name: env.GERRIT_BRANCH ]], branches: [[name: env.GERRIT_BRANCH ]],
@ -112,7 +113,7 @@ pipeline {
credentialsId: env.JENKINS_GERRIT_CREDS, credentialsId: env.JENKINS_GERRIT_CREDS,
name: env.GERRIT_NAME, name: env.GERRIT_NAME,
refspec: env.GERRIT_REFSPEC, refspec: env.GERRIT_REFSPEC,
url: env.GERRIT_PROJECT_URL.replaceAll("http(s)?://", "http\$1://${gerrit_user}@") url: env.GERRIT_PROJECT_URL.replaceAll("http(s)?://", "http\$1://${GERRIT_USER_NAME}@")
] ]
] ]
] ]

Loading…
Cancel
Save