X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=Jenkinsfile;h=d0620b1e3dff730ba5645631aba2d73fcdd36a3d;hb=c7393b88143880b33e7a46916159ed49049b58a2;hp=3c4f3d79c9bb472f12f1102a086c59e6d79d0475;hpb=ce91097fdb6bf51d5e43b00da30dd3e4866ec134;p=osm%2Fosmclient.git diff --git a/Jenkinsfile b/Jenkinsfile index 3c4f3d7..d0620b1 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -6,6 +6,7 @@ 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'), ]) ]) @@ -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.TEST_INSTALL) + params.TEST_INSTALL, + params.ARTIFACTORY_SERVER) }