X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=Jenkinsfile;h=c48f53d210adde213698ea31a4193f297e0f0d88;hb=refs%2Fchanges%2F69%2F2069%2F7;hp=a325574c87f7468e41aaafd1f7aa77a4602fd092;hpb=6077101bdb44a32850e9c3b0953e6be6077452fb;p=osm%2FRO.git diff --git a/Jenkinsfile b/Jenkinsfile index a325574c..c48f53d2 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: false, description: '', name: 'TEST_INSTALL'), + string(defaultValue: 'artifactory-osm', description: '', name: 'ARTIFACTORY_SERVER'), ]) ]) def devops_checkout() { dir('devops') { - git url: "${PROJECT_URL_PREFIX}/osm/devops", branch: params.GERRIT_BRANCH + git url: "${PROJECT_URL_PREFIX}/osm/devops", branch: "master" } } @@ -26,5 +27,6 @@ node('docker') { params.GERRIT_BRANCH, params.GERRIT_REFSPEC, params.GERRIT_PATCHSET_REVISION, - params.TEST_INSTALL) + params.TEST_INSTALL, + params.ARTIFACTORY_SERVER) }