X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2FUI.git;a=blobdiff_plain;f=Jenkinsfile;h=ceb06c31f58ce921c3bc3b8bec4f5a9de60bdfd4;hp=a4a3fa3e0b092ca3cd56dee0ba8b6ed052ec4994;hb=refs%2Fchanges%2F08%2F5508%2F1;hpb=5d1e83aa5393ae57f31531975a5405a1211cf48d diff --git a/Jenkinsfile b/Jenkinsfile index a4a3fa3e0..ceb06c31f 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,5 @@ node { params.GERRIT_BRANCH, params.GERRIT_REFSPEC, params.GERRIT_PATCHSET_REVISION, - params.BUILD_SYSTEM) -} + params.TEST_INSTALL, + params.ARTIFACTORY_SERVER)