mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-03 03:20:57 +00:00
CI: Update jenkinsfiles with new Gerrit URLs
The recent upgrade of Gerrit to 2.16 elimiated referencing a
repository in a way the jenkinsfiles were relying on so
the URL references were changed to a more consistent and supported
format.
Change-Id: I2e8e3f213b9a96bb1b27665eca4a9a24bc49820e
(cherry picked from commit 5ce084579f
)
This commit is contained in:
@@ -79,7 +79,7 @@ pipeline {
|
||||
|
||||
stage ("Checkout") {
|
||||
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.GIT_URL.replaceAll(/[^\/]+$/, env.GERRIT_PROJECT)
|
||||
|
||||
/*
|
||||
* Jenkins has already automatically checked out the base branch
|
||||
@@ -102,10 +102,10 @@ pipeline {
|
||||
checkout scm: [$class: 'GitSCM',
|
||||
branches: [[name: env.GERRIT_BRANCH ]],
|
||||
extensions: [
|
||||
[$class: 'ScmName', name: 'gerrit-public'],
|
||||
[$class: 'ScmName', name: env.GERRIT_NAME],
|
||||
[$class: 'CleanBeforeCheckout'],
|
||||
[$class: 'PreBuildMerge', options: [
|
||||
mergeRemote: 'gerrit-public',
|
||||
mergeRemote: env.GERRIT_NAME,
|
||||
fastForwardMode: 'NO_FF',
|
||||
mergeStrategy: 'RECURSIVE',
|
||||
mergeTarget: env.GERRIT_BRANCH]],
|
||||
|
@@ -80,7 +80,7 @@ pipeline {
|
||||
|
||||
stage ("Checkout") {
|
||||
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.GIT_URL.replaceAll(/[^\/]+$/, env.GERRIT_PROJECT)
|
||||
|
||||
/*
|
||||
* Jenkins has already automatically checked out the base branch
|
||||
@@ -103,10 +103,10 @@ pipeline {
|
||||
checkout scm: [$class: 'GitSCM',
|
||||
branches: [[name: env.GERRIT_BRANCH ]],
|
||||
extensions: [
|
||||
[$class: 'ScmName', name: 'gerrit-public'],
|
||||
[$class: 'ScmName', name: env.GERRIT_NAME],
|
||||
[$class: 'CleanBeforeCheckout'],
|
||||
[$class: 'PreBuildMerge', options: [
|
||||
mergeRemote: 'gerrit-public',
|
||||
mergeRemote: env.GERRIT_NAME,
|
||||
fastForwardMode: 'NO_FF',
|
||||
mergeStrategy: 'RECURSIVE',
|
||||
mergeTarget: env.GERRIT_BRANCH]],
|
||||
|
Reference in New Issue
Block a user