diff --git a/Jenkinsfile b/Jenkinsfile index 74de654..38cd5cc 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -70,7 +70,17 @@ pipeline { } 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 { retry(3) { sleep(300*installRetryCount)