summaryrefslogtreecommitdiffstats
path: root/jenkins_jobs
diff options
context:
space:
mode:
authorZuul <zuul@review.opendev.org>2020-01-07 18:28:33 +0000
committerGerrit Code Review <review@openstack.org>2020-01-07 18:28:33 +0000
commit99e9b234bc39f099000e4c819c560567176dc492 (patch)
tree328ff1d08a76ac2d8f95b40aceef3dbe6c75ebe4 /jenkins_jobs
parent7b00932d2c4ccd25a269ca6238f90427f3c6ad37 (diff)
parent8a27ad1ed16ec432265aeedf001e7fdc9fa920a7 (diff)
downloadpython-jenkins-job-builder-99e9b234bc39f099000e4c819c560567176dc492.tar.gz
python-jenkins-job-builder-99e9b234bc39f099000e4c819c560567176dc492.tar.xz
python-jenkins-job-builder-99e9b234bc39f099000e4c819c560567176dc492.zip
Merge "Fix gerrit-code-review plugin name"
Diffstat (limited to 'jenkins_jobs')
-rw-r--r--jenkins_jobs/modules/project_multibranch.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/jenkins_jobs/modules/project_multibranch.py b/jenkins_jobs/modules/project_multibranch.py
index 3761ddc1..2a7a3870 100644
--- a/jenkins_jobs/modules/project_multibranch.py
+++ b/jenkins_jobs/modules/project_multibranch.py
@@ -583,7 +583,10 @@ def gerrit_scm(xml_parent, data):
source = XML.SubElement(
xml_parent,
"source",
- {"class": "jenkins.plugins.gerrit.GerritSCMSource", "plugin": "gerrit"},
+ {
+ "class": "jenkins.plugins.gerrit.GerritSCMSource",
+ "plugin": "gerrit-code-review",
+ },
)
source_mapping = [
("", "id", "-".join(["gr", data.get("url", "")])),