master
SLW\ARNAUA 2023-03-09 11:17:51 +01:00
parent cffb802795
commit 86891c8ec8
1 changed files with 7 additions and 2 deletions

9
Jenkinsfile vendored
View File

@ -65,7 +65,7 @@
dir("/opt/workspace/coco_terraform_config/") {
git branch: "${params.BBRANCH}", credentialsId: "jaws_dynatrace_bitbuket_user", url: "https://atc.bmwgroup.net/bitbucket/scm/opapm/coco_terraform_config.git"
}
dir("/opt/workspace/slo-generator/") {
dir("/opt/workspace/coco_apm_slo_yaml2tf/") {
git branch: "${params.CBRANCH}", credentialsId: "jaws_dynatrace_bitbuket_user", url: "https://atc.bmwgroup.net/bitbucket/scm/opapm/coco_apm_slo_yaml2tf.git"
}
}
@ -76,6 +76,7 @@
stage('Install Required Python Packages') {
steps {
sh '''
pwd
cd ..
pwd
ls -la
@ -83,9 +84,13 @@
ls -la
cd ../coco_terraform_config/
ls -la
cd ../coco_apm_slo_yaml2tf/
ls -la
cd ..
pwd
python3 --version
pip3 --version
pip3 install --user -r requirements.txt
pip3 install --user -r ../coco_apm_slo_yaml2tf/requirements.txt
'''
}
}