diff --git a/Jenkinsfile b/Jenkinsfile index 975cea2..a62797b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -345,7 +345,12 @@ def deployJobs(def serviceList){ def deploy(String service, String version, String host, String foo){ def now = new Date(); println("Going to deploy the service "+service+" with version: "+version+" on target: "+host+" with argument: "+foo); - def statusCode = sh( script: "${ANSIBLE_ROOT_FOLDER}/CD/deployService.sh $service $version $host $foo;", returnStatus: true); + dir("${ANSIBLE_ROOT_FOLDER}/CD/"){ + sh(""" + git pull; + """) + def statusCode = sh( script: "./deployService.sh $service $version $host $foo;", returnStatus: true); + } sh(""" echo " last exit code \$?"; """)