From: mordkoff Date: Thu, 14 Sep 2017 16:06:41 +0000 (+0200) Subject: Merge "Use GERRIT_BRACH param in Jenkinsfile" X-Git-Tag: v3.0.0rc~3 X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2FUI.git;a=commitdiff_plain;h=706d84720cce4449aabc931edd3a928d9d86590d;hp=5d1e83aa5393ae57f31531975a5405a1211cf48d Merge "Use GERRIT_BRACH param in Jenkinsfile" --- diff --git a/Jenkinsfile b/Jenkinsfile index a4a3fa3e0..a15eafe87 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: true, description: '', name: 'BUILD_SYSTEM'), + 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.BUILD_SYSTEM, + params.ARTIFACTORY_SERVER) }