From cb19ca981d923b51d14c9cfca6151cfeb06088d2 Mon Sep 17 00:00:00 2001 From: George Joseph <gjoseph@digium.com> Date: Mon, 17 Sep 2018 06:10:18 -0600 Subject: [PATCH] CI: Fix typo in testsuite git checkout Change-Id: I30024515e5b00a5044fd39fbff27d818f016b719 --- tests/CI/gates.jenkinsfile | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/tests/CI/gates.jenkinsfile b/tests/CI/gates.jenkinsfile index 19c82e8866..1f161d756c 100644 --- a/tests/CI/gates.jenkinsfile +++ b/tests/CI/gates.jenkinsfile @@ -183,10 +183,13 @@ pipeline { shallow: true ], ], - userRemoteConfigs: [[ + userRemoteConfigs: [ + [ + credentialsId: env.JENKINS_GERRIT_CREDS, name: env.GERRIT_NAME, - url: testsuiteUrl,replaceAll("http(s)?://", "http\$1://${GERRIT_USER_NAME}@") - ]] + url: testsuiteUrl.replaceAll("http(s)?://", "http\$1://${GERRIT_USER_NAME}@") + ] + ] ] } -- GitLab