From b5eacc6d5c20a70c9b3d133150045c2c59bda2df Mon Sep 17 00:00:00 2001 From: "SLW\\ARNAUA" Date: Thu, 9 Mar 2023 10:24:35 +0100 Subject: [PATCH] modified --- Jenkinsfile | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 56b81af..374b7a9 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -56,14 +56,17 @@ stages { stage('Checkout Repositories'){ - parallel 'Checkout Repositories': { - dir("/opt/workspace/") { - git branch: "${params.ABRANCH}", credentialsId: "jaws_dynatrace_bitbuket_user", url: "https://atc.bmwgroup.net/bitbucket/scm/opapm/shared_configuration.git" - } - dir("/opt/workspace/") { - git branch: "${params.BBRANCH}", credentialsId: "jaws_dynatrace_bitbuket_user", url: "https://atc.bmwgroup.net/bitbucket/scm/opapm/coco_terraform_config.git" + steps { + parallel 'Checkout Repositories': { + dir("/opt/workspace/") { + git branch: "${params.ABRANCH}", credentialsId: "jaws_dynatrace_bitbuket_user", url: "https://atc.bmwgroup.net/bitbucket/scm/opapm/shared_configuration.git" + } + dir("/opt/workspace/") { + git branch: "${params.BBRANCH}", credentialsId: "jaws_dynatrace_bitbuket_user", url: "https://atc.bmwgroup.net/bitbucket/scm/opapm/coco_terraform_config.git" + } } } + } stage('Install Required Python Packages') {