master
SLW\ARNAUA 2023-03-09 10:24:35 +01:00
parent eb4488f7d9
commit b5eacc6d5c
1 changed files with 9 additions and 6 deletions

15
Jenkinsfile vendored
View File

@ -56,14 +56,17 @@
stages { stages {
stage('Checkout Repositories'){ stage('Checkout Repositories'){
parallel 'Checkout Repositories': { steps {
dir("/opt/workspace/") { parallel 'Checkout Repositories': {
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.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" 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') { stage('Install Required Python Packages') {