X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2FUI.git;a=blobdiff_plain;f=Jenkinsfile;h=a15eafe87649d5681d15ef3c04b7155e74fb8509;hp=6ed5423d2519943b9d780a2ad93ac0f85dc52d91;hb=e6a5e4fdeac339f87e2d4153f6cbba6c46a3e844;hpb=86f0b57917c865563a4d35d11f5e7eda9733a321 diff --git a/Jenkinsfile b/Jenkinsfile index 6ed5423d2..a15eafe87 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -6,12 +6,13 @@ properties([ string(defaultValue: env.GERRIT_PATCHSET_REVISION, description: '', name: 'GERRIT_PATCHSET_REVISION'), string(defaultValue: 'https://osm.etsi.org/gerrit', description: '', name: 'PROJECT_URL_PREFIX'), booleanParam(defaultValue: true, description: '', name: 'BUILD_SYSTEM'), + string(defaultValue: 'artifactory-osm', description: '', name: 'ARTIFACTORY_SERVER'), ]) ]) def devops_checkout() { dir('devops') { - git url: "${PROJECT_URL_PREFIX}/osm/devops" + git url: "${PROJECT_URL_PREFIX}/osm/devops", branch: params.GERRIT_BRANCH } } @@ -26,5 +27,6 @@ node('docker') { params.GERRIT_BRANCH, params.GERRIT_REFSPEC, params.GERRIT_PATCHSET_REVISION, - params.BUILD_SYSTEM) + params.BUILD_SYSTEM, + params.ARTIFACTORY_SERVER) }