X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2FUI.git;a=blobdiff_plain;f=Jenkinsfile;h=99cb40523f203402942c6dc93da18ea3fe85f1eb;hp=6ed5423d2519943b9d780a2ad93ac0f85dc52d91;hb=16d71de0bcf7caf9dfc600f939ea1ae877eefb60;hpb=86f0b57917c865563a4d35d11f5e7eda9733a321 diff --git a/Jenkinsfile b/Jenkinsfile index 6ed5423d2..99cb40523 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -5,13 +5,14 @@ properties([ string(defaultValue: env.GERRIT_REFSPEC, description: '', name: 'GERRIT_REFSPEC'), 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'), + 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" + 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.TEST_INSTALL, + params.ARTIFACTORY_SERVER) }