diff --git a/Jenkinsfile b/Jenkinsfile index caae3ef..f69f987 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,6 +1,10 @@ pipeline { agent any + + stage('scm checkout'){ + git 'https://github.com/narendra311777/mycode.git' + } stages { @@ -16,7 +20,7 @@ pipeline { steps { withCredentials([[$class : 'UsernamePasswordMultiBinding', - credentialsId : 'PCF_LOGIN', + credentialsId : 'pcf_login', usernameVariable: 'USERNAME', passwordVariable: 'PASSWORD']]) { @@ -29,4 +33,4 @@ pipeline { } -} \ No newline at end of file +}