daily
SLW\ARNAUA 2023-04-26 09:41:31 +02:00
parent 93ba6d5054
commit ce92c2765d
1 changed files with 11 additions and 1 deletions

12
Jenkinsfile vendored
View File

@ -70,7 +70,17 @@ pipeline {
} }
stages { stages {
stage('Install Python Packages') { stage('Fetch Repository') {
steps {
parallel 'Checkout Repository': {
dir("/opt/workspace/qm_report/") {
git branch: "daily", credentialsId: "jaws_dynatrace_bitbuket_user", url: "https://atc.bmwgroup.net/bitbucket/scm/opapm/qm_report.git"
}
}
}
}
stage('Install Required Python Packages') {
steps { steps {
retry(3) { retry(3) {
sleep(300*installRetryCount) sleep(300*installRetryCount)