From: marchettim Date: Thu, 14 Sep 2017 15:18:33 +0000 (+0200) Subject: Merge "Build on jenkins nodes with label docker" X-Git-Tag: v3.0.0rc^0 X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2FSO.git;a=commitdiff_plain;h=6f1a3fe149e4a6b9803382cb299c902f4cf58ec9;hp=-c Merge "Build on jenkins nodes with label docker" --- 6f1a3fe149e4a6b9803382cb299c902f4cf58ec9 diff --combined Jenkinsfile index 4a2ab9e4,d8b0ff6e..67137ecb --- 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) }