diff --git a/Jenkinsfile b/Jenkinsfile index 465eb52..44915f0 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -9,12 +9,13 @@ pipeline { stage('Checkout Code') { steps { // Jenkins Git plugin will handle the clone and checkout automatically - checkout([ - $class: 'GitSCM', - branches: [[name: "*/${BRANCH}"]], - userRemoteConfigs: [[url: GIT_URL]] - ]) + // checkout([ + // $class: 'GitSCM', + // branches: [[name: "*/${BRANCH}"]], + // userRemoteConfigs: [[url: GIT_URL]] + // ]) + sh "cd /projects" sh "pwd" sh "git --version" }