Merge "Use GERRIT_BRACH param in Jenkinsfile"
[osm/UI.git] / Jenkinsfile
index 853cc61..a15eafe 100644 (file)
@@ -12,11 +12,11 @@ properties([
 
 def devops_checkout() {
     dir('devops') {
-        git url: "${PROJECT_URL_PREFIX}/osm/devops"
+        git url: "${PROJECT_URL_PREFIX}/osm/devops", branch: params.GERRIT_BRANCH
     }
 }
 
-node {
+node('docker') {
     checkout scm
     devops_checkout()