X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2FUI.git;a=blobdiff_plain;f=Jenkinsfile;h=99cb40523f203402942c6dc93da18ea3fe85f1eb;hp=a4a3fa3e0b092ca3cd56dee0ba8b6ed052ec4994;hb=9a78ccc66dca3e1debfc1199205844000b79afed;hpb=5d1e83aa5393ae57f31531975a5405a1211cf48d diff --git a/Jenkinsfile b/Jenkinsfile index a4a3fa3e0..99cb40523 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -5,7 +5,8 @@ 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'), ]) ]) @@ -15,7 +16,7 @@ def devops_checkout() { } } -node { +node('docker') { checkout scm devops_checkout() @@ -26,5 +27,6 @@ node { params.GERRIT_BRANCH, params.GERRIT_REFSPEC, params.GERRIT_PATCHSET_REVISION, - params.BUILD_SYSTEM) + params.TEST_INSTALL, + params.ARTIFACTORY_SERVER) }