CI: Fix typo in testsuite git checkout

Change-Id: I30024515e5b00a5044fd39fbff27d818f016b719
This commit is contained in:
George Joseph 2018-09-17 06:10:18 -06:00
parent 3f9544c1f5
commit 4a309839eb
1 changed files with 6 additions and 3 deletions

View File

@ -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}@")
]
]
]
}