From: marchettim Date: Thu, 14 Sep 2017 15:17:53 +0000 (+0200) Subject: Merge "Build on jenkins nodes with label docker" X-Git-Tag: v3.0.0rc~1 X-Git-Url: https://osm.etsi.org/gitweb/?a=commitdiff_plain;h=89ffba30ce6c265d2e37bc64577967c1aed5cfdc;hp=-c;p=osm%2Fosmclient.git Merge "Build on jenkins nodes with label docker" --- 89ffba30ce6c265d2e37bc64577967c1aed5cfdc diff --combined Jenkinsfile index f346cac,3fd1f7d..d0620b1 --- a/Jenkinsfile +++ b/Jenkinsfile @@@ -6,7 -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'), ]) ]) @@@ -16,7 -15,7 +16,7 @@@ def devops_checkout() } } - node { + node('docker') { checkout scm devops_checkout() @@@ -27,6 -26,5 +27,6 @@@ params.GERRIT_BRANCH, params.GERRIT_REFSPEC, params.GERRIT_PATCHSET_REVISION, - params.TEST_INSTALL) + params.TEST_INSTALL, + params.ARTIFACTORY_SERVER) }