add dir function for testing

This commit is contained in:
Roberto Cirillo 2024-10-30 10:41:26 +01:00
parent ceaa196895
commit ecc8b71cbe
1 changed files with 6 additions and 1 deletions

7
Jenkinsfile vendored
View File

@ -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 \$?";
""")